26 lines
513 B
Plaintext
26 lines
513 B
Plaintext
# Description: XSL Transformations library.
|
|
# URL: http://xmlsoft.org/XSLT/
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
# Depends on: libxml2
|
|
|
|
name=libxslt
|
|
version=1.1.37
|
|
release=1
|
|
source=(https://download.gnome.org/sources/libxslt/${version:0:3}/libxslt-$version.tar.xz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--without-python \
|
|
--without-crypto
|
|
|
|
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{gtk-,}doc
|
|
}
|