wok diff libxslt/receipt @ rev 15693

linux-lxc: modify post_install() for update /etc/fstab
author Stanislas Leduc <shann@slitaz.org>
date Sat Dec 21 08:40:56 2013 +0100 (2013-12-21)
parents 210b7c05d288
children fd812ac90452
line diff
     1.1 --- a/libxslt/receipt	Thu Apr 19 09:01:04 2012 +0000
     1.2 +++ b/libxslt/receipt	Sat Dec 21 08:40:56 2013 +0100
     1.3 @@ -5,26 +5,28 @@
     1.4  CATEGORY="system-tools"
     1.5  SHORT_DESC="XSLT support for libxml2."
     1.6  MAINTAINER="pankso@slitaz.org"
     1.7 -DEPENDS="libgcrypt libxml2 zlib"
     1.8 -BUILD_DEPENDS="libgcrypt-dev libxml2-dev zlib-dev python-dev"
     1.9 +LICENSE="MIT"
    1.10  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.11  WEB_SITE="http://www.xmlsoft.org/XSLT/"
    1.12  WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL"
    1.13  
    1.14 +DEPENDS="libgcrypt libxml2 zlib"
    1.15 +BUILD_DEPENDS="libgcrypt-dev libxml2-dev zlib-dev python-dev"
    1.16 +
    1.17  # Rules to configure and make the package.
    1.18  compile_rules()
    1.19  {
    1.20  	cd $src
    1.21  	./configure $CONFIGURE_ARGS &&
    1.22  	make &&
    1.23 -	make install
    1.24 +	make install 2>&1 | grep -v 'html/index.sgml'
    1.25  }
    1.26  
    1.27  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.28  genpkg_rules()
    1.29  {
    1.30  	mkdir -p $fs/usr/lib/libxslt-plugins
    1.31 -	cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    1.32 -	cp -a $_pkg/usr/bin $fs/usr
    1.33 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.34 +	cp -a $install/usr/bin $fs/usr
    1.35  	rm $fs/usr/bin/xslt-config
    1.36  }