summaryrefslogtreecommitdiff
path: root/repo/system/gnutls.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/gnutls.xibuild')
-rw-r--r--repo/system/gnutls.xibuild14
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/system/gnutls.xibuild b/repo/system/gnutls.xibuild
new file mode 100644
index 0000000..b2e0fa3
--- /dev/null
+++ b/repo/system/gnutls.xibuild
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+DEPS=(libtasn readline zlib nettle p11-kit libidn2 libunistring)
+
+SOURCE=https://www.gnupg.org/ftp/gcrypt/gnutls/v3.6/gnutls-3.6.16.tar.xz
+DESC="Library which provides a secure layer over a transport layer"
+
+build () {
+
+ ./configure \
+ --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}