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 15:26:10 +00: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 15:26:10 +00:00
|
|
|
|
2006-04-11 03:56:25 +00:00
|
|
|
build() {
|
2023-08-27 17:31:49 +02:00
|
|
|
cd $name-$version
|
2012-06-23 20:26:24 +10:00
|
|
|
|
2023-08-27 17:31:49 +02:00
|
|
|
prt-get isinst libgcrypt || PKGMK_LIBXSLT+=' --without-crypto'
|
2012-06-23 20:26:24 +10:00
|
|
|
|
2023-08-27 17:31:49 +02:00
|
|
|
./configure $PKGMK_LIBXSLT \
|
|
|
|
--prefix=/usr
|
2016-08-10 20:29:45 +10:00
|
|
|
|
2023-08-27 17:31:49 +02:00
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
2015-11-04 12:34:50 +11:00
|
|
|
|
2023-08-27 17:31:49 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
rm -r $PKG/usr/share/{gtk-,}doc
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|