summaryrefslogtreecommitdiff
path: root/manualPorts
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2019-01-05 18:13:47 +0100
committerErich Eckner <git@eckner.net>2019-01-05 18:13:47 +0100
commit10306be1c2df3e837f547fc62a3cb020c3df029f (patch)
tree4ccdca38fd8feff9a29209f8ff55f2f28252c468 /manualPorts
parent6c06f3867409fb4a6468a4cd871bc755c0a54dea (diff)
downloadcrux-ports-10306be1c2df3e837f547fc62a3cb020c3df029f.tar.xz
cryptsetup neu
Diffstat (limited to 'manualPorts')
-rw-r--r--manualPorts/cryptsetup/.footprint28
-rw-r--r--manualPorts/cryptsetup/.md5sum1
-rw-r--r--manualPorts/cryptsetup/.signature5
-rw-r--r--manualPorts/cryptsetup/Pkgfile25
4 files changed, 59 insertions, 0 deletions
diff --git a/manualPorts/cryptsetup/.footprint b/manualPorts/cryptsetup/.footprint
new file mode 100644
index 0000000..dbeda5f
--- /dev/null
+++ b/manualPorts/cryptsetup/.footprint
@@ -0,0 +1,28 @@
+drwxr-xr-x root/root sbin/
+-rwxr-xr-x root/root sbin/cryptsetup.static
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/libcryptsetup.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libcryptsetup.a
+-rwxr-xr-x root/root usr/lib/libcryptsetup.la
+lrwxrwxrwx root/root usr/lib/libcryptsetup.so -> libcryptsetup.so.12.3.0
+lrwxrwxrwx root/root usr/lib/libcryptsetup.so.12 -> libcryptsetup.so.12.3.0
+-rwxr-xr-x root/root usr/lib/libcryptsetup.so.12.3.0
+drwxr-xr-x root/root usr/lib/pkgconfig/
+-rw-r--r-- root/root usr/lib/pkgconfig/libcryptsetup.pc
+drwxr-xr-x root/root usr/sbin/
+-rwxr-xr-x root/root usr/sbin/cryptsetup
+-rwxr-xr-x root/root usr/sbin/cryptsetup-reencrypt
+-rwxr-xr-x root/root usr/sbin/cryptsetup-reencrypt.static
+-rwxr-xr-x root/root usr/sbin/integritysetup
+-rwxr-xr-x root/root usr/sbin/integritysetup.static
+-rwxr-xr-x root/root usr/sbin/veritysetup
+-rwxr-xr-x root/root usr/sbin/veritysetup.static
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man8/
+-rw-r--r-- root/root usr/share/man/man8/cryptsetup-reencrypt.8.gz
+-rw-r--r-- root/root usr/share/man/man8/cryptsetup.8.gz
+-rw-r--r-- root/root usr/share/man/man8/integritysetup.8.gz
+-rw-r--r-- root/root usr/share/man/man8/veritysetup.8.gz
diff --git a/manualPorts/cryptsetup/.md5sum b/manualPorts/cryptsetup/.md5sum
new file mode 100644
index 0000000..23ffb1e
--- /dev/null
+++ b/manualPorts/cryptsetup/.md5sum
@@ -0,0 +1 @@
+ec03e09cbe978a19fa6d6194ac642bae cryptsetup-2.0.6.tar.xz
diff --git a/manualPorts/cryptsetup/.signature b/manualPorts/cryptsetup/.signature
new file mode 100644
index 0000000..1e4ed0b
--- /dev/null
+++ b/manualPorts/cryptsetup/.signature
@@ -0,0 +1,5 @@
+untrusted comment: verify with /etc/ports/deepthought.pub
+RWQxCptPusLGGt0bljBQPM1brXya7ax04Ji/Xk09ravhqCHHmkRWHkOW6ebXezK0zqAugKJFSoo7SM8tOSLAk+lcRJUL14jrow4=
+SHA256 (Pkgfile) = 3a343395d04aa3e43010401d064b802aabf026ef6d314cee661fe5b346c2d498
+SHA256 (.footprint) = 462134d63f9e5c8c34e46dfdfd00a21e7283f6f29320bfdd3bf9137a1e72357c
+SHA256 (cryptsetup-2.0.6.tar.xz) = 7c51fae0f0e7ea9af0f515b2ac77009fb2969a6619ebab47d097dca38b083d30
diff --git a/manualPorts/cryptsetup/Pkgfile b/manualPorts/cryptsetup/Pkgfile
new file mode 100644
index 0000000..e7055e6
--- /dev/null
+++ b/manualPorts/cryptsetup/Pkgfile
@@ -0,0 +1,25 @@
+# Description: user-friendly dm-crypt/LUKS interface
+# URL: https://gitlab.com/cryptsetup/cryptsetup
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Contributor: Thomas Penteker, tek at serverop dot de
+# Packager: Tilman Sauerbeck, tilman at crux dot nu
+# Depends on: libdevmapper, libgcrypt, popt
+
+name=cryptsetup
+version=2.0.6
+release=1
+source=(https://kernel.org/pub/linux/utils/$name/v${version%.*}/$name-$version.tar.xz)
+
+build() {
+ cd $name-$version
+
+ LIBS="-lpthread" ./configure \
+ --prefix=/usr \
+ --disable-nls \
+ --enable-static-cryptsetup
+ make
+ make DESTDIR=$PKG install
+
+ install -d $PKG/sbin
+ mv $PKG/{usr/sbin,sbin}/cryptsetup.static
+}