opt/libxslt/Pkgfile

26 lines
513 B
Plaintext
Raw Normal View History

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