opt/libxslt/Pkgfile

27 lines
626 B
Plaintext
Raw Normal View History

2023-08-27 17:31:49 +02:00
# Description: XSL Transformations library
# URL: https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: libxml2 python3-setuptools
# Optional: libgcrypt
2006-02-23 16:26:10 +01:00
name=libxslt
2023-11-18 12:49:32 +01:00
version=1.1.39
release=1
2022-02-18 13:44:09 +01:00
source=(https://download.gnome.org/sources/libxslt/${version:0:3}/libxslt-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
2023-08-27 17:31:49 +02:00
cd $name-$version
2012-06-23 12:26:24 +02:00
2023-08-27 17:31:49 +02:00
prt-get isinst libgcrypt || PKGMK_LIBXSLT+=' --without-crypto'
2012-06-23 12:26:24 +02:00
2023-08-27 17:31:49 +02:00
./configure $PKGMK_LIBXSLT \
--prefix=/usr
2016-08-10 12:29:45 +02:00
2023-08-27 17:31:49 +02:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2023-08-27 17:31:49 +02:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{gtk-,}doc
2006-02-23 16:26:10 +01:00
}