opt/libxslt/Pkgfile

26 lines
550 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# Description: XSL Transformations library
2006-10-10 05:39:52 +02:00
# URL: http://xmlsoft.org/XSLT/
2008-02-04 17:58:08 +01:00
# Maintainer: Tilman Sauerbeck, tilman at crux dot nu
2006-02-23 16:26:10 +01:00
# Depends on: libxml2
name=libxslt
2009-10-11 16:40:06 +02:00
version=1.1.26
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
2008-04-10 17:52:33 +02:00
./configure --prefix=/usr --mandir=/usr/man \
2006-10-10 05:39:52 +02:00
--without-python
make
make DESTDIR=$PKG install
rm -rf $PKG/usr/doc $PKG/usr/share
# move manpages
if [ -e $PKG/usr/man/man4/libxslt.4 ]
then
(cd $PKG/usr/man
mkdir man3
mv man4/libxslt.4 man3/libxslt.3)
fi
2006-02-23 16:26:10 +01:00
}