opt/libxslt/Pkgfile

26 lines
473 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
version=1.1.34
2016-08-10 12:29:45 +02:00
release=1
2019-08-21 13:20:45 +02:00
source=(http://xmlsoft.org/sources/$name-$version.tar.gz)
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
2013-03-19 16:10:32 +01:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}