2012-11-21 11:12:43 -06:00
|
|
|
# Description: XSL Transformations library
|
|
|
|
# URL: http://xmlsoft.org/XSLT/
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
# Depends on: libxml2-32 libxslt
|
|
|
|
|
|
|
|
name=libxslt-32
|
2013-03-20 02:27:28 +11:00
|
|
|
version=1.1.28
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
|
|
|
source=(ftp://xmlsoft.org/libxml2/libxslt-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd libxslt-$version
|
2013-03-20 02:27:28 +11:00
|
|
|
|
2012-11-21 11:12:43 -06:00
|
|
|
sed -i -e 's/libgcrypt-config/&-32/g' configure
|
2013-03-20 02:27:28 +11:00
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2012-11-21 11:12:43 -06:00
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--without-python
|
2013-03-20 02:27:28 +11:00
|
|
|
|
2012-11-21 11:12:43 -06:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2013-03-20 02:27:28 +11:00
|
|
|
|
|
|
|
rm -r \
|
|
|
|
$PKG/usr/share/{aclocal,doc} \
|
|
|
|
$PKG/usr/{bin,include,man}
|
|
|
|
|
|
|
|
rmdir $PKG/usr/share
|
2012-11-21 11:12:43 -06:00
|
|
|
}
|