summaryrefslogtreecommitdiff
path: root/repo/xmlsec
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
committerdavidovski <david@davidovski.xyz>2022-06-15 20:02:02 +0100
commitd2567bfbdf0e9fa6db0a6ed1534831ec859a3e03 (patch)
tree684a17eebf446aa1adab1097616f1882c8d51568 /repo/xmlsec
parentd1fc3393cca72e8e432f827f7624e38734fad6dc (diff)
added deps for qemu
Diffstat (limited to 'repo/xmlsec')
-rw-r--r--repo/xmlsec/xmlsec.xibuild29
1 files changed, 29 insertions, 0 deletions
diff --git a/repo/xmlsec/xmlsec.xibuild b/repo/xmlsec/xmlsec.xibuild
new file mode 100644
index 0000000..fccb9cc
--- /dev/null
+++ b/repo/xmlsec/xmlsec.xibuild
@@ -0,0 +1,29 @@
+#!/bin/sh
+
+NAME="xmlsec"
+DESC="C based implementation for XML Signature Syntax and Processing and XML Encryption Syntax and Processing"
+
+MAKEDEPS=" libxml2 libxslt openssl nss autoconf automake libtool"
+
+PKG_VER=1.2.33
+SOURCE="https://github.com/lsh123/xmlsec"
+
+prepare() {
+ autoreconf -fi
+}
+
+build() {
+ ./configure \
+ --prefix=/usr \
+ --disable-static \
+ --enable-pkgconfig \
+ --with-openssl=/usr \
+ --without-gnutls \
+ --without-gcrypt \
+ --with-default-crypto=openssl
+ make
+}
+
+package() {
+ make DESTDIR="$PKG_DEST" install
+}