summaryrefslogtreecommitdiff
path: root/libxslt/Pkgfile
blob: f22b34bcaf9915032e93887c4279ec3fce4e3b03 (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.34
    8 release=1
    9 source=(http://xmlsoft.org/sources/$name-$version.tar.gz)
   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/doc
   25 }

Generated by cgit