wok-next diff libxslt/receipt @ rev 19608

lzop: add forgotten patch.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Feb 03 14:20:13 2017 +0200 (2017-02-03)
parents 73fb2ebfd59a
children 2c48a1f40bb6
line diff
     1.1 --- a/libxslt/receipt	Thu Mar 06 00:03:58 2014 +0100
     1.2 +++ b/libxslt/receipt	Fri Feb 03 14:20:13 2017 +0200
     1.3 @@ -1,19 +1,20 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libxslt"
     1.7 -VERSION="1.1.26"
     1.8 +VERSION="1.1.29"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="XSLT support for libxml2."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12  LICENSE="MIT"
    1.13 -TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WEB_SITE="http://www.xmlsoft.org/XSLT/"
    1.15 -WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL"
    1.16  HOST_ARCH="i486 arm"
    1.17  
    1.18 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.19 +WGET_URL="http://xmlsoft.org/sources/$TARBALL"
    1.20 +
    1.21  DEPENDS="libgcrypt libgpg-error libxml2 zlib"
    1.22 -BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev \
    1.23 -python-dev"
    1.24 +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev python-dev"
    1.25 +SPLIT="libxslt-python"
    1.26  
    1.27  # Handle cross compilation
    1.28  case "$ARCH" in
    1.29 @@ -23,7 +24,9 @@
    1.30  # Rules to configure and make the package.
    1.31  compile_rules()
    1.32  {
    1.33 -	./configure $CONFIGURE_ARGS &&
    1.34 +	./configure \
    1.35 +		--disable-static \
    1.36 +		$CONFIGURE_ARGS &&
    1.37  	make &&
    1.38  	make install 2>&1 | grep -v 'html/index.sgml'
    1.39  }
    1.40 @@ -31,8 +34,5 @@
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/lib/libxslt-plugins
    1.45 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.46 -	cp -a $install/usr/bin $fs/usr
    1.47 -	rm $fs/usr/bin/xslt-config
    1.48 +	cook_copy_files xsltproc libxslt.so* libexslt.so*
    1.49  }