summaryrefslogtreecommitdiff
path: root/cryptfs-daemon/PKGBUILD
blob: b75c41463097dfeee9be93d7a1bd0606472a2cc3 (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
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=cryptfs-daemon
pkgver=0.5.6
pkgrel=1
pkgdesc='shell script and systemd unit for (automatically) (un)mounting encrypted partitions'
arch=('any')
url="https://git.eckner.net/Erich/${pkgname}"
license=('GPL')
groups=()
depends=('cryptsetup')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
source=(
    "https://git.eckner.net/Erich/${pkgname}/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('9420b342f8b79357bc0c9a8e7b5017a0635b34b044ae7662ce6522291147aa2d63df4f6d268e345021386b32868bff2b2646ce484bd9b08c13782529283e6df3')

build() {

    cd "${pkgname}-${pkgver}"
    make CONF_PREFIXES='# cryptfs'

}

package() {

    cd "${pkgname}-${pkgver}"
    make DESTDIR="${pkgdir}" install_systemd

}