diff options
author | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-05-27 18:34:26 +0100 |
commit | 4615385d6c8203001962a7a31dd02cdb1a73544b (patch) | |
tree | 0ff0ea93838f9c39ee5a09066ad05d9567e31437 /repo/system/cryptsetup/cryptsetup.xibuild | |
parent | 7b0628f037dcbf85cfb381d5e05dea39a2059d33 (diff) |
added tor
Diffstat (limited to 'repo/system/cryptsetup/cryptsetup.xibuild')
-rw-r--r-- | repo/system/cryptsetup/cryptsetup.xibuild | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/repo/system/cryptsetup/cryptsetup.xibuild b/repo/system/cryptsetup/cryptsetup.xibuild deleted file mode 100644 index 6c883d9..0000000 --- a/repo/system/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/ - -} |