wok-current rev 21353
updated libxslt, libxslt-dev and libxslt-python (1.1.26 -> 1.1.33)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Apr 21 07:53:02 2019 +0100 (2019-04-21) |
parents | 0253e30fe373 |
children | 4700d43dc494 |
files | libxslt-dev/receipt libxslt-python/receipt libxslt/receipt |
line diff
1.1 --- a/libxslt-dev/receipt Sun Apr 21 07:35:58 2019 +0100 1.2 +++ b/libxslt-dev/receipt Sun Apr 21 07:53:02 2019 +0100 1.3 @@ -1,29 +1,32 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libxslt-dev" 1.7 -VERSION="1.1.26" 1.8 +VERSION="1.1.33" 1.9 CATEGORY="development" 1.10 -SHORT_DESC="XSLT devel files support for libxml2." 1.11 +SHORT_DESC="XSLT support for libxml2 - development files." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="MIT" 1.14 -WANTED="libxslt" 1.15 WEB_SITE="http://xmlsoft.org/" 1.16 -HOST_ARCH="i486 arm" 1.17 1.18 DEPENDS="libxslt pkg-config libxslt-python libgcrypt-dev libxml2-dev zlib-dev" 1.19 +WANTED="libxslt" 1.20 + 1.21 +HOST_ARCH="i486 arm" 1.22 1.23 # Rules to gen a SliTaz package suitable for Tazpkg. 1.24 genpkg_rules() 1.25 { 1.26 - mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share 1.27 + mkdir -p $fs/usr/lib 1.28 + mkdir -p $fs/usr/bin 1.29 + mkdir -p $fs/usr/share 1.30 + 1.31 + cp -a $install/usr/lib/*.*a $fs/usr/lib 1.32 + cp -a $install/usr/lib/*.sh $fs/usr/lib 1.33 + cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.34 1.35 - cp -a $install/usr/lib/*.*a $fs/usr/lib 1.36 - cp -a $install/usr/lib/*.sh $fs/usr/lib 1.37 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 1.38 - 1.39 - cp $install/usr/bin/xslt-config $fs/usr/bin 1.40 + cp $install/usr/bin/xslt-config $fs/usr/bin 1.41 chmod +x $fs/usr/bin/* 1.42 1.43 - cp -a $install/usr/include $fs/usr 1.44 - cp -a $install/usr/share/aclocal $fs/usr/share 1.45 + cp -a $install/usr/include $fs/usr 1.46 + cp -a $install/usr/share/aclocal $fs/usr/share 1.47 }
2.1 --- a/libxslt-python/receipt Sun Apr 21 07:35:58 2019 +0100 2.2 +++ b/libxslt-python/receipt Sun Apr 21 07:53:02 2019 +0100 2.3 @@ -1,15 +1,15 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libxslt-python" 2.7 -VERSION="1.1.26" 2.8 +VERSION="1.1.33" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="python module for libxslt" 2.11 +SHORT_DESC="Python module for libxslt." 2.12 MAINTAINER="slaxemulator@gmail.com" 2.13 LICENSE="MIT" 2.14 -WANTED="libxslt" 2.15 WEB_SITE="http://xmlsoft.org/" 2.16 2.17 DEPENDS="libxslt python" 2.18 +WANTED="libxslt" 2.19 2.20 # Rules to gen a SliTaz package suitable for Tazpkg. 2.21 genpkg_rules() 2.22 @@ -19,4 +19,3 @@ 2.23 PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') 2.24 cp -a $install/usr/lib/$PYTHON_LIB $fs/usr/lib 2.25 } 2.26 -
3.1 --- a/libxslt/receipt Sun Apr 21 07:35:58 2019 +0100 3.2 +++ b/libxslt/receipt Sun Apr 21 07:53:02 2019 +0100 3.3 @@ -1,19 +1,21 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="libxslt" 3.7 -VERSION="1.1.26" 3.8 +VERSION="1.1.33" 3.9 CATEGORY="system-tools" 3.10 SHORT_DESC="XSLT support for libxml2." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="MIT" 3.13 +WEB_SITE="http://www.xmlsoft.org/XSLT/" 3.14 + 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WEB_SITE="http://www.xmlsoft.org/XSLT/" 3.17 WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL" 3.18 -HOST_ARCH="i486 arm" 3.19 3.20 DEPENDS="libgcrypt libgpg-error libxml2 zlib" 3.21 -BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev \ 3.22 -python-dev" 3.23 +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev \ 3.24 + python-dev zlib-dev" 3.25 + 3.26 +HOST_ARCH="i486 arm" 3.27 3.28 # Handle cross compilation 3.29 case "$ARCH" in 3.30 @@ -24,7 +26,7 @@ 3.31 compile_rules() 3.32 { 3.33 ./configure $CONFIGURE_ARGS && 3.34 - make && 3.35 + make -j 1 && 3.36 make install 2>&1 | grep -v 'html/index.sgml' 3.37 } 3.38 3.39 @@ -32,7 +34,9 @@ 3.40 genpkg_rules() 3.41 { 3.42 mkdir -p $fs/usr/lib/libxslt-plugins 3.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 3.44 - cp -a $install/usr/bin $fs/usr 3.45 + 3.46 + cp -a $install/usr/lib/*.so* $fs/usr/lib 3.47 + cp -a $install/usr/bin $fs/usr 3.48 + 3.49 rm $fs/usr/bin/xslt-config 3.50 }