blob: 5692c1526bd039311fae91918bf6aab6117c8cb9 (
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
|
#!/bin/sh
NAME="cryptsetup"
DESC="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi"
MAKEDEPS="make argon2 openssl"
DEPS="util-linux musl popt device-mapper "
PKG_VER=2.5.0
SOURCE="https://www.kernel.org/pub/linux/utils/cryptsetup/v${PKG_VER%.*}/cryptsetup-$PKG_VER.tar.gz"
ADDITIONAL="dmcrypt.initd dmcrypt.confd "
build () {
./configure \
--prefix=/usr \
--bindir=/usr/bin \
--sysconfdir=/etc \
--disable-static \
--enable-libargon2 \
--with-crypto_backend=openssl \
--disable-external-tokens \
--disable-ssh-token
make
}
package () {
make DESTDIR=$PKG_DEST install
install -Dm644 dmcrypt.confd "$PKG_DEST"/etc/conf.d/dmcrypt
install -Dm755 dmcrypt.initd "$PKG_DEST"/etc/init.d/dmcrypt
mkdir -p "$PKG_DEST"/usr/share/doc/cryptsetup/
install -m644 README.md docs/v$PKG_VER-ReleaseNotes \
"$PKG_DEST"/usr/share/doc/cryptsetup/
}
|