summaryrefslogtreecommitdiff
path: root/libxslt/Pkgfile
blob: 2ceb640d132005641f95713e9c965a6c4fb73bfd (plain)
    1 # Description: XSL Transformations library.
    2 # URL: http://xmlsoft.org/XSLT/
    3 # Maintainer: Danny Rawlins, crux at romster dot me
    4 # Depends on: libxml2
    5 
    6 name=libxslt
    7 version=1.1.35
    8 release=1
    9 source=(https://download.gnome.org/sources/libxslt/${version:0:3}/libxslt-$version.tar.xz)
   10 
   11 build() {
   12 	cd $name-$version
   13 
   14 	./configure \
   15 		--prefix=/usr \
   16 		--without-python \
   17 		--without-crypto
   18 
   19 	sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
   20 
   21 	make
   22 	make DESTDIR=$PKG install
   23 
   24 	rm -r $PKG/usr/share/{gtk-,}doc
   25 }

Generated by cgit