summaryrefslogtreecommitdiff
path: root/repo/cryptsetup/cryptsetup.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/cryptsetup/cryptsetup.xibuild
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'repo/cryptsetup/cryptsetup.xibuild')
-rw-r--r--repo/cryptsetup/cryptsetup.xibuild36
1 files changed, 36 insertions, 0 deletions
diff --git a/repo/cryptsetup/cryptsetup.xibuild b/repo/cryptsetup/cryptsetup.xibuild
new file mode 100644
index 0000000..a4b989d
--- /dev/null
+++ b/repo/cryptsetup/cryptsetup.xibuild
@@ -0,0 +1,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.4.3
+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 "$srcdir"/dmcrypt.confd "$PKG_DEST"/etc/conf.d/dmcrypt
+ install -Dm755 "$srcdir"/dmcrypt.initd "$PKG_DEST"/etc/init.d/dmcrypt
+
+ mkdir -p "$PKG_DEST"/usr/share/doc/cryptsetup/
+ install -m644 README.md FAQ docs/v$PKG_VER-ReleaseNotes \
+ "$PKG_DEST"/usr/share/doc/cryptsetup/
+
+}