30 lines
639 B
Plaintext
Raw Permalink Normal View History

# 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
2023-11-18 14:19:22 +01:00
version=1.1.39
release=1
2022-02-21 12:56:30 +01:00
source=(https://download.gnome.org/sources/libxslt/${version:0:3}/libxslt-$version.tar.xz)
build() {
cd libxslt-$version
2013-03-20 02:27:28 +11:00
sed -i -e 's/libgcrypt-config/&-32/g' configure
2013-03-20 02:27:28 +11:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--without-python
2013-03-20 02:27:28 +11:00
2016-08-10 20:31:05 +10:00
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
make
make DESTDIR=$PKG install
2013-03-20 02:27:28 +11:00
rm -r \
$PKG/usr/share/{aclocal,doc} \
2016-08-10 20:31:05 +10:00
$PKG/usr/{bin,include,share/man}
}