wok rev 9474

Fixed libxslt. (I think)
author Christopher Rogers <slaxemulator@gmail.com>
date Mon Apr 04 01:47:36 2011 +0000 (2011-04-04)
parents 707c54e3e625
children e5ae411e1d8c
files libxslt/receipt
line diff
     1.1 --- a/libxslt/receipt	Mon Apr 04 03:17:26 2011 +0200
     1.2 +++ b/libxslt/receipt	Mon Apr 04 01:47:36 2011 +0000
     1.3 @@ -6,7 +6,7 @@
     1.4  SHORT_DESC="XSLT support for libxml2."
     1.5  MAINTAINER="pankso@slitaz.org"
     1.6  DEPENDS="libgcrypt libxml2 zlib"
     1.7 -BUILD_DEPENDS="libgcrypt-dev libxml2-dev zlib-dev"
     1.8 +BUILD_DEPENDS="python"
     1.9  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.10  WEB_SITE="http://www.xmlsoft.org/XSLT/"
    1.11  WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL"
    1.12 @@ -15,14 +15,9 @@
    1.13  compile_rules()
    1.14  {
    1.15  	cd $src
    1.16 -	./configure \
    1.17 -		--prefix=/usr \
    1.18 -		--infodir=/usr/share/info \
    1.19 -		--mandir=/usr/share/man \
    1.20 -		--with-html-dir=/usr/share/doc \
    1.21 -		$CONFIGURE_ARGS &&
    1.22 +	./configure &&
    1.23  	make &&
    1.24 -	make DESTDIR=$PWD/_pkg install
    1.25 +	make install
    1.26  }
    1.27  
    1.28  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 @@ -32,5 +27,4 @@
    1.30  	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.31  	cp -a $_pkg/usr/bin $fs/usr
    1.32  	rm $fs/usr/bin/xslt-config
    1.33 -	strip -s $fs/usr/lib/* 2>/dev/null
    1.34  }