opt/libxslt/Pkgfile

26 lines
513 B
Plaintext
Raw Normal View History

2012-06-23 12:26:24 +02:00
# Description: XSL Transformations library.
2006-10-10 05:39:52 +02:00
# URL: http://xmlsoft.org/XSLT/
2014-11-10 13:25:50 +01:00
# Maintainer: Danny Rawlins, crux at romster dot me
2017-11-01 13:04:55 +01:00
# Depends on: libxml2
2006-02-23 16:26:10 +01:00
name=libxslt
2023-05-10 13:06:03 +02:00
version=1.1.38
2016-08-10 12:29:45 +02:00
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() {
2006-10-10 05:39:52 +02:00
cd $name-$version
2012-06-23 12:26:24 +02:00
./configure \
--prefix=/usr \
2015-10-20 12:42:54 +02:00
--without-python \
--without-crypto
2012-06-23 12:26:24 +02:00
2016-08-10 12:29:45 +02:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2006-10-10 05:39:52 +02:00
make
make DESTDIR=$PKG install
2022-02-18 13:44:09 +01:00
rm -r $PKG/usr/share/{gtk-,}doc
2006-02-23 16:26:10 +01:00
}