summaryrefslogtreecommitdiff
path: root/cryptfs-daemon/PKGBUILD
blob: c0acd71f4d99c923287fbc7a5423e74af87d943d (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.5
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=('80188bde187b3b9da94eb613698d8fc2c31f4e0d9921ab8ff03ead8fb5a8d866999731670e1cef1838134c6f3da8284c27f4f7d78c5921697902ebadc62dfa30')

build() {

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

}

package() {

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

}