forked from ports/compat-32
31 lines
587 B
Plaintext
31 lines
587 B
Plaintext
# Description: XSL Transformations library
|
|
# URL: http://xmlsoft.org/XSLT/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
# Depends on: libxml2-32 libxslt
|
|
|
|
name=libxslt-32
|
|
version=1.1.28
|
|
release=1
|
|
source=(ftp://xmlsoft.org/libxml2/libxslt-$version.tar.gz)
|
|
|
|
build() {
|
|
cd libxslt-$version
|
|
|
|
sed -i -e 's/libgcrypt-config/&-32/g' configure
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/man \
|
|
--libdir=/usr/lib32 \
|
|
--without-python
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r \
|
|
$PKG/usr/share/{aclocal,doc} \
|
|
$PKG/usr/{bin,include,man}
|
|
|
|
rmdir $PKG/usr/share
|
|
}
|