diff options
author | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-06-15 20:02:02 +0100 |
commit | d2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch) | |
tree | 684a17eebf446aa1adab1097616f1882c8d51568 /skip/cryptsetup/cryptsetup.xibuild | |
parent | d1fc3393cca72e8e432f827f7624e38734fad6dc (diff) |
added deps for qemu
Diffstat (limited to 'skip/cryptsetup/cryptsetup.xibuild')
-rw-r--r-- | skip/cryptsetup/cryptsetup.xibuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/skip/cryptsetup/cryptsetup.xibuild b/skip/cryptsetup/cryptsetup.xibuild deleted file mode 100644 index 6c883d9..0000000 --- a/skip/cryptsetup/cryptsetup.xibuild +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/sh - -NAME="cryptsetup" -DESC="Userspace setup tool for transparent encryption of block devices using the Linux 2.6 cryptoapi" - -MAKEDEPS="make" -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/ - -} |