contrib/xmlsec/Pkgfile

22 lines
471 B
Plaintext
Raw Normal View History

2019-08-11 11:14:14 +02:00
# Description: XML Security Library is a C library based on LibXML2
# URL: https://www.aleksey.com/xmlsec/index.html
# Maintainer: Tim Biermann, tbier at posteo dot de
2021-04-22 22:35:21 +02:00
# Depends on: libxslt openssl
# Optional: gnutls libgcrypt nss
2019-08-11 11:14:14 +02:00
name=xmlsec
2024-01-05 18:31:41 +01:00
version=1.3.3
release=1
source=(https://www.aleksey.com/xmlsec/download/${name}1-$version.tar.gz)
2019-08-11 11:14:14 +02:00
build() {
2021-04-22 22:35:21 +02:00
cd ${name}1-$version
2023-04-13 21:34:03 +02:00
./configure --prefix=/usr
2019-08-11 11:14:14 +02:00
make
make DESTDIR=$PKG install
2023-04-13 21:34:03 +02:00
2019-08-11 11:14:14 +02:00
rm -r $PKG/usr/share/doc
}