opt/libxslt/Pkgfile

27 lines
525 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
2012-06-23 12:26:24 +02:00
# Packager: Tilman Sauerbeck, tilman at crux dot nu
2017-11-01 13:04:55 +01:00
# Depends on: libxml2
2006-02-23 16:26:10 +01:00
name=libxslt
2016-08-10 12:29:45 +02:00
version=1.1.29
release=1
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
}