1
0
forked from ports/opt
opt/libxslt/Pkgfile

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