summaryrefslogtreecommitdiff
path: root/libs/libgcrypt/MAKEPKG
diff options
context:
space:
mode:
Diffstat (limited to 'libs/libgcrypt/MAKEPKG')
-rw-r--r--libs/libgcrypt/MAKEPKG30
1 files changed, 30 insertions, 0 deletions
diff --git a/libs/libgcrypt/MAKEPKG b/libs/libgcrypt/MAKEPKG
new file mode 100644
index 0000000..70022d4
--- /dev/null
+++ b/libs/libgcrypt/MAKEPKG
@@ -0,0 +1,30 @@
+#!/bin/mkpkg
+# description: General purpose cryptographic library
+# url: https://www.gnupg.org/software/libgcrypt
+
+name=libgcrypt
+version=1.12.4
+release=1
+depends=(libgpg-error)
+source=(https://gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-$version.tar.bz2)
+sha256sums=(
+ "d77f68f48879510e79a2f65977ccc68981781ea0923e5bdffac2a193ea3d660e"
+)
+
+build() {
+ cd $name-$version
+ ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --disable-doc \
+ --with-libgpg-error-prefix=/usr
+ make
+ make DESTDIR=$PKG install
+}
+
+signify() {
+ untrusted comment: public key
+ RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
+}
+
+# vim: filetype=sh