blob: 2c8850dacaea886c2c74d2062c89aab02394ced4 (
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.4
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=('b6b86e8805b77e96639ff0652e578c88377dc5530964b206617723b7fddb757e80775636ab268b4395e3f2a7897ff6b2d115fd9225e4ac704ee5cae0e965f659')
build() {
cd "${pkgname}-${pkgver}"
make CONF_PREFIXES='# cryptfs'
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install_systemd
}
|