summaryrefslogtreecommitdiff
path: root/repo/core/libtasn1.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/core/libtasn1.xibuild')
-rw-r--r--repo/core/libtasn1.xibuild14
1 files changed, 14 insertions, 0 deletions
diff --git a/repo/core/libtasn1.xibuild b/repo/core/libtasn1.xibuild
new file mode 100644
index 0000000..2f6fccd
--- /dev/null
+++ b/repo/core/libtasn1.xibuild
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+DEPS=(glibc)
+
+SOURCE=https://ftp.gnu.org/gnu/libtasn1/libtasn1-4.18.0.tar.gz
+DESC="The ASN.1 library used in GNUTLS"
+
+build () {
+
+ ./configure \
+ --prefix=/usr
+ make
+ make DESTDIR=$PKG_DEST install
+}