summaryrefslogtreecommitdiff
path: root/nonsystemd/opentmpfiles/PKGBUILD
blob: 25a366aacdb8787e73d6c5cab465d2c415db134d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Maintainer: David P. <megver83@parabola.nu>
# Contributor: Luke Shumaker <lukeshu@parabola.nu>
# Maintainer (Artix): artoo <artoo@artixlinux.org>

pkgname=opentmpfiles
pkgver=0.2
pkgrel=1
pkgdesc="A standalone utility for handling systemd-style tmpfiles.d settings"
arch=('any')
url="https://github.com/OpenRC/opentmpfiles"
license=('BSD2')
depends=('pacman')
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz"
        '30-opentmpfiles.hook'
        'tmpfiles-hook')
sha256sums=('4fa6a78600b1d67d34c441919e5e62ad181af358d9353ce380f515d623177ecb'
            '23c73b3cc20ec38e0a5166f254293c911d20ae3efec8e133f424c1a1d0703fb8'
            'adbee03530006e8284ea44c5dd7eb99f6cc6c4e383c09fec36d7a22f7d486fc5')

package_opentmpfiles() {
    replaces=('opentmpfiles-systemdcompat')
    conflicts=('opentmpfiles-systemdcompat' 'systemd-tools')

    cd "${pkgbase}-${pkgver}"

    make bindir="/usr/bin" DESTDIR="${pkgdir}" install

    # pacman hooks
    install -Dm755 ${srcdir}/tmpfiles-hook "$pkgdir"/usr/share/libalpm/scripts/tmpfiles-hook
    install -Dm644 -t "$pkgdir"/usr/share/libalpm/hooks ${srcdir}/*.hook

    ln -snf "/usr/bin/tmpfiles" "${pkgdir}/usr/bin/systemd-tmpfiles"

    install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
    install -m644 "license" "${pkgdir}/usr/share/licenses/${pkgname}/"
}