32 lines
617 B
Plaintext
32 lines
617 B
Plaintext
# Description: XSL Transformations library.
|
|
# URL: http://xmlsoft.org/XSLT/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Packager: Tilman Sauerbeck, tilman at crux dot nu
|
|
# Depends on: libxml2
|
|
|
|
name=libxslt
|
|
version=1.1.28
|
|
release=2
|
|
source=(ftp://xmlsoft.org/libxml2/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-python \
|
|
--without-crypto
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
|
|
# move manpages
|
|
if [ -e $PKG/usr/share/man/man4/libxslt.4 ]; then
|
|
(cd $PKG/usr/share/man
|
|
install -d man3
|
|
mv man4/libxslt.4 man3/libxslt.3)
|
|
fi
|
|
}
|