summaryrefslogtreecommitdiff
path: root/repo/xmlsec/xmlsec.xibuild
blob: fccb9cc1bb40495d5da6bfd2ce8f0563b431399f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
}