wok-current diff libxslt/receipt @ rev 10353
gcc: Removed gawk in build depends. Added check like the one glibc has to install if cook script is found. Fixed tazwok cookorder i hope.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 22 16:40:19 2011 +0000 (2011-05-22) |
parents | 02bbaa9d12ba |
children | 79091c9a2a84 |
line diff
1.1 --- a/libxslt/receipt Mon Apr 04 01:29:52 2011 +0200 1.2 +++ b/libxslt/receipt Sun May 22 16:40:19 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 }