diff options
Diffstat (limited to 'repo/xmlsec')
-rw-r--r-- | repo/xmlsec/xmlsec.xibuild | 29 |
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 +} |