opt/libxslt/Pkgfile

31 lines
600 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
2006-02-23 16:26:10 +01:00
# Depends on: libxml2
name=libxslt
2013-03-19 16:10:32 +01:00
version=1.1.28
2006-02-23 16:26:10 +01:00
release=1
source=(ftp://xmlsoft.org/libxml2/$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 \
--mandir=/usr/man \
2006-10-10 05:39:52 +02:00
--without-python
2012-06-23 12:26:24 +02:00
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
2012-06-23 12:26:24 +02:00
2006-10-10 05:39:52 +02:00
# move manpages
2012-06-23 12:26:24 +02:00
if [ -e $PKG/usr/man/man4/libxslt.4 ]; then
2006-10-10 05:39:52 +02:00
(cd $PKG/usr/man
2012-06-23 12:26:24 +02:00
mkdir man3
mv man4/libxslt.4 man3/libxslt.3)
2006-10-10 05:39:52 +02:00
fi
2006-02-23 16:26:10 +01:00
}