blob: d661a7121474fbc28e31c5a83933f2ff796a4fd3 (
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
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=('86d16103c63885c8ce8e8aec4edc8c66dbdc2497d1bce2aa13a5fefa7d20b10252e5195f251431fed8287c84008ecd4cdc9d4e70c1db55e11c7c39becf1178f0')
build() {
cd "${pkgname}-${pkgver}"
make CONF_PREFIXES='# cryptfs'
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install_systemd
}
|