wok-next rev 19607
Up: advancecomp, cmake, curl, docbook-xml*, docbook-xsl*, glib, gtk-doc, itstool, jpeg-turbo, lcms2, lemon, libarchive, libcroco, libcurl, libffi, libgcrypt, libgio, libgpg-error, libidn, libjpeg-turbo, libpng+apng, libpng, libsqlite, libxslt, lz4, lz5, lzham_codec, lzo, lzop, nasm, nettle, optipng, pngquant, sqlite, tiff.
line diff
1.1 --- a/advancecomp/receipt Mon Jan 30 23:51:27 2017 +0200 1.2 +++ b/advancecomp/receipt Fri Feb 03 12:13:00 2017 +0200 1.3 @@ -1,16 +1,18 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="advancecomp" 1.7 -VERSION="1.23" 1.8 +VERSION="2.0" 1.9 +COMMIT="4e04906" 1.10 CATEGORY="system-tools" 1.11 SHORT_DESC="Recompression utilities for .ZIP, .PNG, .MNG and .GZ" 1.12 MAINTAINER="pascal.bellard@slitaz.org" 1.13 LICENSE="GPL2" 1.14 WEB_SITE="http://www.advancemame.it/comp-readme" 1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WGET_URL="https://github.com/amadvance/advancecomp/archive/v$VERSION.tar.gz" 1.17 TAGS="compression archive" 1.18 1.19 +TARBALL="$PACKAGE-${COMMIT:-$VERSION}.tar.gz" 1.20 +WGET_URL="$GITHUB/amadvance/advancecomp/tarball/${COMMIT:-v$VERSION}" 1.21 + 1.22 DEPENDS="gcc-lib-base zlib" 1.23 BUILD_DEPENDS="automake zlib-dev" 1.24 1.25 @@ -20,7 +22,8 @@ 1.26 patch -p1 -i $stuff/advancecomp.patch 1.27 1.28 ./autogen.sh && 1.29 - ./configure $CONFIGURE_ARGS && make && make install 1.30 + ./configure $CONFIGURE_ARGS && 1.31 + make && make install 1.32 } 1.33 1.34 # Rules to gen a SliTaz package suitable for Tazpkg.
2.1 --- a/cmake/receipt Mon Jan 30 23:51:27 2017 +0200 2.2 +++ b/cmake/receipt Fri Feb 03 12:13:00 2017 +0200 2.3 @@ -1,25 +1,29 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="cmake" 2.7 -VERSION="3.1.2" 2.8 +VERSION="3.6.1" 2.9 CATEGORY="development" 2.10 -SHORT_DESC="Cross-platform Make." 2.11 +SHORT_DESC="Cross-platform build system generator" 2.12 MAINTAINER="pankso@slitaz.org" 2.13 LICENSE="BSD" 2.14 +WEB_SITE="https://cmake.org/" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="http://www.cmake.org/" 2.18 WGET_URL="http://www.cmake.org/files/v${VERSION%.*}/$TARBALL" 2.19 2.20 -DEPENDS="openssl libidn gcc-lib-base" 2.21 -BUILD_DEPENDS="ncurses-dev gcc-lib-base" 2.22 +DEPENDS="expat libarchive libcurl ncurses-libform zlib" 2.23 +BUILD_DEPENDS="zlib-dev curl-dev bzip2-dev liblzma-dev libarchive-dev \ 2.24 +expat-dev ncurses-dev gfortran" 2.25 2.26 # Rules to configure and make the package. 2.27 compile_rules() 2.28 { 2.29 ./bootstrap \ 2.30 --prefix=/usr \ 2.31 - --docdir=/share/doc/$PACKAGE \ 2.32 - --mandir=/share/man && 2.33 + --system-libs \ 2.34 + --mandir=/share/man \ 2.35 + --no-system-jsoncpp \ 2.36 + --docdir=/share/doc/$PACKAGE-$VERSION && 2.37 make && 2.38 make DESTDIR=$DESTDIR install 2.39 } 2.40 @@ -27,6 +31,5 @@ 2.41 # Rules to gen a SliTaz package suitable for Tazpkg. 2.42 genpkg_rules() 2.43 { 2.44 - cp -a $install/usr $fs 2.45 - rm -rf $fs/usr/share/man 2.46 + cook_copy_folders bin aclocal cmake-${VERSION%.*} 2.47 }
3.1 --- a/curl-dev/receipt Mon Jan 30 23:51:27 2017 +0200 3.2 +++ b/curl-dev/receipt Fri Feb 03 12:13:00 2017 +0200 3.3 @@ -1,24 +1,19 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="curl-dev" 3.7 -VERSION="7.40.0" 3.8 +VERSION="7.50.1" 3.9 CATEGORY="development" 3.10 SHORT_DESC="Tool and libs for transferring files with URL syntax." 3.11 MAINTAINER="pankso@slitaz.org" 3.12 LICENSE="MIT" 3.13 -WANTED="curl" 3.14 -WEB_SITE="http://curl.haxx.se/" 3.15 +WEB_SITE="https://curl.haxx.se/" 3.16 HOST_ARCH="i486 arm" 3.17 3.18 -DEPENDS="curl openssl-dev libidn-dev pkg-config" 3.19 +WANTED="curl" 3.20 +DEPENDS="curl libidn-dev openssl-dev libcrypto-dev zlib-dev" 3.21 3.22 # Rules to gen a SliTaz package suitable for Tazpkg. 3.23 genpkg_rules() 3.24 { 3.25 - mkdir -p $fs/usr/bin $fs/usr/lib/pkgconfig 3.26 - cp -a $install/usr/bin/curl-config $fs/usr/bin 3.27 - chmod 755 $fs/usr/bin/* 3.28 - cp -a $install/usr/lib/*.*a $fs/usr/lib 3.29 - cp -a $install/usr/include $fs/usr 3.30 - cp -a $src/libcurl.pc $fs/usr/lib/pkgconfig 3.31 + cook_copy_files curl-config *.h *.la *.pc *.m4 3.32 }
4.1 --- a/curl/receipt Mon Jan 30 23:51:27 2017 +0200 4.2 +++ b/curl/receipt Fri Feb 03 12:13:00 2017 +0200 4.3 @@ -1,25 +1,27 @@ 4.4 # SliTaz package receipt. 4.5 4.6 PACKAGE="curl" 4.7 -VERSION="7.40.0" 4.8 +VERSION="7.50.1" 4.9 CATEGORY="network" 4.10 SHORT_DESC="Tool and libs for transferring files with URL syntax." 4.11 MAINTAINER="pankso@slitaz.org" 4.12 LICENSE="MIT" 4.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 4.14 -WEB_SITE="http://curl.haxx.se/" 4.15 -WGET_URL="http://curl.haxx.se/download/$TARBALL" 4.16 +WEB_SITE="https://curl.haxx.se/" 4.17 HOST_ARCH="i486 arm" 4.18 4.19 -DEPENDS="libssl libcurl zlib libidn" 4.20 -BUILD_DEPENDS="openssl-dev libidn-dev" 4.21 +TARBALL="$PACKAGE-$VERSION.tar.lzma" 4.22 +WGET_URL="https://curl.haxx.se/download/$TARBALL" 4.23 + 4.24 +DEPENDS="libssl libcurl libcrypto zlib" 4.25 +BUILD_DEPENDS="zlib-dev openssl-dev libidn-dev" 4.26 +SPLIT="libcurl" 4.27 4.28 # Rules to configure and make the package. 4.29 compile_rules() 4.30 { 4.31 - cd $src 4.32 ./configure \ 4.33 - --disable-ldap \ 4.34 + --disable-static \ 4.35 + --enable-threaded-resolver \ 4.36 $CONFIGURE_ARGS && 4.37 make && make install 4.38 } 4.39 @@ -27,7 +29,5 @@ 4.40 # Rules to gen a SliTaz package suitable for Tazpkg. 4.41 genpkg_rules() 4.42 { 4.43 - mkdir -p $fs/usr/bin $fs/usr/lib 4.44 - cp -a $install/usr/bin/curl $fs/usr/bin 4.45 + cook_copy_files curl 4.46 } 4.47 -
5.1 --- a/docbook-xml-412/receipt Mon Jan 30 23:51:27 2017 +0200 5.2 +++ b/docbook-xml-412/receipt Fri Feb 03 12:13:00 2017 +0200 5.3 @@ -6,9 +6,9 @@ 5.4 SHORT_DESC="A widely used XML scheme for writing documentation and help. (version 4.1.2)" 5.5 MAINTAINER="slaxemulator@gmail.com" 5.6 LICENSE="MIT" 5.7 -SOURCE="docbkx" 5.8 -TARBALL="${SOURCE}412.zip" 5.9 WEB_SITE="http://www.oasis-open.org/docbook/" 5.10 + 5.11 +TARBALL="docbkx412.zip" 5.12 WGET_URL="http://www.docbook.org/xml/$VERSION/$TARBALL" 5.13 5.14 DEPENDS="libxml2-tools libxml2" 5.15 @@ -16,11 +16,9 @@ 5.16 # Rules to configure and make the package. 5.17 compile_rules() 5.18 { 5.19 - cd $src 5.20 mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 5.21 cp -dRf docbook.cat *.dtd ent/ *.mod \ 5.22 $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 5.23 - 5.24 } 5.25 5.26 # Rules to gen a SliTaz package suitable for Tazpkg. 5.27 @@ -29,4 +27,3 @@ 5.28 mkdir -p $fs 5.29 cp -a $install/usr $fs 5.30 } 5.31 -
6.1 --- a/docbook-xml-42/receipt Mon Jan 30 23:51:27 2017 +0200 6.2 +++ b/docbook-xml-42/receipt Fri Feb 03 12:13:00 2017 +0200 6.3 @@ -6,9 +6,9 @@ 6.4 SHORT_DESC="A widely used XML scheme for writing documentation and help. (version 4.2)" 6.5 MAINTAINER="slaxemulator@gmail.com" 6.6 LICENSE="MIT" 6.7 -SOURCE="docbook-xml" 6.8 -TARBALL="${SOURCE}-${VERSION}.zip" 6.9 WEB_SITE="http://www.oasis-open.org/docbook/" 6.10 + 6.11 +TARBALL="docbook-xml-$VERSION.zip" 6.12 WGET_URL="http://www.docbook.org/xml/$VERSION/$TARBALL" 6.13 6.14 DEPENDS="libxml2-tools libxml2" 6.15 @@ -16,11 +16,9 @@ 6.16 # Rules to configure and make the package. 6.17 compile_rules() 6.18 { 6.19 - cd $src 6.20 - mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 6.21 + mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-$VERSION 6.22 cp -dRf docbook.cat *.dtd ent/ *.mod \ 6.23 - $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 6.24 - 6.25 + $DESTDIR/usr/share/xml/docbook/xml-dtd-$VERSION 6.26 } 6.27 6.28 # Rules to gen a SliTaz package suitable for Tazpkg.
7.1 --- a/docbook-xml-43/receipt Mon Jan 30 23:51:27 2017 +0200 7.2 +++ b/docbook-xml-43/receipt Fri Feb 03 12:13:00 2017 +0200 7.3 @@ -6,9 +6,9 @@ 7.4 SHORT_DESC="A widely used XML scheme for writing documentation and help. (version 4.3)" 7.5 MAINTAINER="slaxemulator@gmail.com" 7.6 LICENSE="MIT" 7.7 -SOURCE="docbook-xml" 7.8 -TARBALL="${SOURCE}-${VERSION}.zip" 7.9 WEB_SITE="http://www.oasis-open.org/docbook/" 7.10 + 7.11 +TARBALL="docbook-xml-$VERSION.zip" 7.12 WGET_URL="http://www.docbook.org/xml/$VERSION/$TARBALL" 7.13 7.14 DEPENDS="libxml2-tools libxml2" 7.15 @@ -16,11 +16,9 @@ 7.16 # Rules to configure and make the package. 7.17 compile_rules() 7.18 { 7.19 - cd $src 7.20 mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 7.21 cp -dRf docbook.cat *.dtd ent/ *.mod \ 7.22 $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 7.23 - 7.24 } 7.25 7.26 # Rules to gen a SliTaz package suitable for Tazpkg. 7.27 @@ -29,4 +27,3 @@ 7.28 mkdir -p $fs 7.29 cp -a $install/usr $fs 7.30 } 7.31 -
8.1 --- a/docbook-xml-44/receipt Mon Jan 30 23:51:27 2017 +0200 8.2 +++ b/docbook-xml-44/receipt Fri Feb 03 12:13:00 2017 +0200 8.3 @@ -6,9 +6,9 @@ 8.4 SHORT_DESC="A widely used XML scheme for writing documentation and help. (version 4.4)" 8.5 MAINTAINER="slaxemulator@gmail.com" 8.6 LICENSE="MIT" 8.7 -SOURCE="docbook-xml" 8.8 -TARBALL="${SOURCE}-${VERSION}.zip" 8.9 WEB_SITE="http://www.oasis-open.org/docbook/" 8.10 + 8.11 +TARBALL="docbook-xml-$VERSION.zip" 8.12 WGET_URL="http://www.docbook.org/xml/$VERSION/$TARBALL" 8.13 8.14 DEPENDS="libxml2-tools libxml2" 8.15 @@ -16,11 +16,9 @@ 8.16 # Rules to configure and make the package. 8.17 compile_rules() 8.18 { 8.19 - cd $src 8.20 - mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 8.21 + mkdir -p $DESTDIR/usr/share/xml/docbook/xml-dtd-$VERSION 8.22 cp -dRf docbook.cat *.dtd ent/ *.mod \ 8.23 - $DESTDIR/usr/share/xml/docbook/xml-dtd-${VERSION} 8.24 - 8.25 + $DESTDIR/usr/share/xml/docbook/xml-dtd-$VERSION 8.26 } 8.27 8.28 # Rules to gen a SliTaz package suitable for Tazpkg. 8.29 @@ -29,4 +27,3 @@ 8.30 mkdir -p $fs 8.31 cp -a $install/usr $fs 8.32 } 8.33 -
9.1 --- a/docbook-xml/receipt Mon Jan 30 23:51:27 2017 +0200 9.2 +++ b/docbook-xml/receipt Fri Feb 03 12:13:00 2017 +0200 9.3 @@ -6,11 +6,13 @@ 9.4 SHORT_DESC="A widely used XML scheme for writing documentation and help. (version 4.5)" 9.5 MAINTAINER="slaxemulator@gmail.com" 9.6 LICENSE="MIT" 9.7 +WEB_SITE="http://www.oasis-open.org/docbook/" 9.8 + 9.9 TARBALL="$PACKAGE-$VERSION.zip" 9.10 -WEB_SITE="http://www.oasis-open.org/docbook/" 9.11 WGET_URL="http://www.docbook.org/xml/$VERSION/$TARBALL" 9.12 9.13 -DEPENDS="libxml2-tools libxml2 docbook-xml-412 docbook-xml-42 docbook-xml-43 docbook-xml-44" 9.14 +DEPENDS="libxml2-tools libxml2 docbook-xml-412 docbook-xml-42 docbook-xml-43 \ 9.15 +docbook-xml-44" 9.16 9.17 # Rules to configure and make the package. 9.18 compile_rules()
10.1 --- a/docbook-xsl-ns/receipt Mon Jan 30 23:51:27 2017 +0200 10.2 +++ b/docbook-xsl-ns/receipt Fri Feb 03 12:13:00 2017 +0200 10.3 @@ -1,14 +1,15 @@ 10.4 # SliTaz package receipt. 10.5 10.6 PACKAGE="docbook-xsl-ns" 10.7 -VERSION="1.76.1" 10.8 +VERSION="1.79.1" 10.9 CATEGORY="development" 10.10 SHORT_DESC="DocBook XSL (namespaced) stylesheets." 10.11 MAINTAINER="paul@slitaz.org" 10.12 LICENSE="MIT" 10.13 +WEB_SITE="http://wiki.docbook.org/topic/DocBookXslStylesheets" 10.14 + 10.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 10.16 -WEB_SITE="http://wiki.docbook.org/topic/DocBookXslStylesheets" 10.17 -WGET_URL="http://jaist.dl.sourceforge.net/sourceforge/docbook/$TARBALL" 10.18 +WGET_URL="$SF_MIRROR/docbook/$TARBALL" 10.19 10.20 DEPENDS="libxml2-tools libxslt" 10.21
11.1 --- a/docbook-xsl/receipt Mon Jan 30 23:51:27 2017 +0200 11.2 +++ b/docbook-xsl/receipt Fri Feb 03 12:13:00 2017 +0200 11.3 @@ -7,6 +7,7 @@ 11.4 MAINTAINER="paul@slitaz.org" 11.5 LICENSE="MIT" 11.6 WEB_SITE="http://docbook.sourceforge.net/" 11.7 + 11.8 TARBALL="$PACKAGE-$VERSION.tar.bz2" 11.9 WGET_URL="$SF_MIRROR/docbook/$TARBALL" 11.10 11.11 @@ -24,7 +25,7 @@ 11.12 for fn in xml xsl dtd ent; do 11.13 install -m644 common/*.${fn} $pkgroot/common/ 11.14 done 11.15 - 11.16 + 11.17 for fn in fo highlighting html roundtrip; do 11.18 install -dm755 ${pkgroot}/${fn} 11.19 install -m644 ${fn}/*.xml ${pkgroot}/${fn}/ 11.20 @@ -45,38 +46,32 @@ 11.21 cp /etc/resolv.conf "$1/etc/resolv.conf" 11.22 fi 11.23 11.24 + U="http://docbook.sourceforge.net/release/xsl" 11.25 + F="/usr/share/xml/docbook/stylesheet/$PACKAGE" 11.26 + 11.27 # Create a /etc/xml/catalog file 11.28 if [ ! -d "$1/etc/xml" ]; then install -v -m755 -d "$1/etc/xml"; fi && 11.29 if [ ! -f "$1/etc/xml/catalog" ]; then 11.30 chroot "$1/" xmlcatalog --noout --create /etc/xml/catalog 11.31 fi && 11.32 11.33 - chroot "$1/" xmlcatalog --noout --add "rewriteSystem" \ 11.34 - "http://docbook.sourceforge.net/release/xsl/$VERSION" \ 11.35 - "/usr/share/xml/docbook/stylesheet/$PACKAGE" \ 11.36 - /etc/xml/catalog && 11.37 + chroot "$1/" xmlcatalog --noout --add "rewriteSystem" "$U/$VERSION" \ 11.38 + "$F" /etc/xml/catalog && 11.39 11.40 - chroot "$1/" xmlcatalog --noout --add "rewriteURI" \ 11.41 - "http://docbook.sourceforge.net/release/xsl/$VERSION" \ 11.42 - "/usr/share/xml/docbook/stylesheet/$PACKAGE" \ 11.43 - /etc/xml/catalog && 11.44 + chroot "$1/" xmlcatalog --noout --add "rewriteURI" "$U/$VERSION" \ 11.45 + "$F" /etc/xml/catalog && 11.46 11.47 - chroot "$1/" xmlcatalog --noout --add "rewriteSystem" \ 11.48 - "http://docbook.sourceforge.net/release/xsl/current" \ 11.49 - "/usr/share/xml/docbook/stylesheet/$PACKAGE" \ 11.50 - /etc/xml/catalog && 11.51 + chroot "$1/" xmlcatalog --noout --add "rewriteSystem" "$U/current" \ 11.52 + "$F" /etc/xml/catalog && 11.53 11.54 - chroot "$1/" xmlcatalog --noout --add "rewriteURI" \ 11.55 - "http://docbook.sourceforge.net/release/xsl/current" \ 11.56 - "/usr/share/xml/docbook/stylesheet/$PACKAGE" \ 11.57 - /etc/xml/catalog 11.58 + chroot "$1/" xmlcatalog --noout --add "rewriteURI" "$U/current" \ 11.59 + "$F" /etc/xml/catalog 11.60 11.61 # link nwalsh dir 11.62 - cd "$1/usr/share/xml/docbook/stylesheet" 11.63 - ln -s $PACKAGE nwalsh 11.64 + ln -s $PACKAGE "$1/usr/share/xml/docbook/stylesheet/nwalsh" 11.65 11.66 if [ -n "$1" ]; then 11.67 - mv -f "$1/etc/resolv.conf.$$" "$1/etc/recolv.conf" 2> /dev/null 11.68 + mv -f "$1/etc/resolv.conf.$$" "$1/etc/recolv.conf" 2>/dev/null 11.69 fi 11.70 11.71 :
12.1 --- a/glib/receipt Mon Jan 30 23:51:27 2017 +0200 12.2 +++ b/glib/receipt Fri Feb 03 12:13:00 2017 +0200 12.3 @@ -16,6 +16,7 @@ 12.4 DEPENDS="pcre libffi libxml2 elfutils" 12.5 BUILD_DEPENDS="perl indent python zlib-dev libffi-dev gettext-tools elfutils-dev \ 12.6 pcre-dev gtk-doc libxslt libxml2-tools dbus-dev" 12.7 +SPLIT="libgio libgio-dev" 12.8 12.9 # Handle cross comilation. Use host Perl, Python, etc 12.10 case "$ARCH" in 12.11 @@ -61,9 +62,8 @@ 12.12 # Rules to gen a SliTaz package suitable for Tazpkg. 12.13 genpkg_rules() 12.14 { 12.15 - mkdir -p $fs/usr/lib 12.16 - cp -a $install/usr/bin $fs/usr 12.17 - cp -a $install/usr/lib/*.so* $fs/usr/lib 12.18 + cook_copy_folders bin 12.19 + cook_copy_files *.so* 12.20 12.21 # Split gio --> libgio 12.22 rm $fs/usr/lib/libgio* 12.23 @@ -72,9 +72,4 @@ 12.24 for bin in gdbus-codegen gtester* glib-mkenums; do 12.25 rm $fs/usr/bin/$bin 12.26 done 12.27 - 12.28 - # Cook packages that want glib. 12.29 - for w in libgio libgio-dev; do 12.30 - [ -x "/usr/bin/cook" ] && echo cook $w 12.31 - done 12.32 }
13.1 --- a/gtk-doc/receipt Mon Jan 30 23:51:27 2017 +0200 13.2 +++ b/gtk-doc/receipt Fri Feb 03 12:13:00 2017 +0200 13.3 @@ -1,23 +1,23 @@ 13.4 # SliTaz package receipt. 13.5 13.6 PACKAGE="gtk-doc" 13.7 -VERSION="1.18" 13.8 +VERSION="1.25" 13.9 CATEGORY="development" 13.10 SHORT_DESC="Generate API documentation from comments added to C code." 13.11 MAINTAINER="pascal.bellard@slitaz.org" 13.12 LICENSE="GPL3" 13.13 +WEB_SITE="https://www.gtk.org/gtk-doc/" 13.14 + 13.15 TARBALL="$PACKAGE-$VERSION.tar.xz" 13.16 -WEB_SITE="http://www.gtk.org/gtk-doc/" 13.17 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:4}/$TARBALL" 13.18 13.19 -BUILD_DEPENDS="docbook-xml docbook-xsl libxslt python perl" 13.20 +BUILD_DEPENDS="docbook-xml docbook-xsl libxslt python perl itstool gettext" 13.21 13.22 # Rules to configure and make the package. 13.23 compile_rules() 13.24 { 13.25 ./configure \ 13.26 --prefix=/usr \ 13.27 - --sysconfdir=/etc \ 13.28 --build=$HOST_SYSTEM --host=$HOST_SYSTEM && 13.29 make && 13.30 make DESTDIR=$DESTDIR install 13.31 @@ -27,5 +27,4 @@ 13.32 genpkg_rules() 13.33 { 13.34 cp -a $install/usr $fs 13.35 - mkdir -p $fs/usr/share/gtk-doc/html 13.36 }
14.1 --- a/itstool/receipt Mon Jan 30 23:51:27 2017 +0200 14.2 +++ b/itstool/receipt Fri Feb 03 12:13:00 2017 +0200 14.3 @@ -1,30 +1,27 @@ 14.4 # SliTaz package receipt. 14.5 14.6 PACKAGE="itstool" 14.7 -VERSION="1.2.0" 14.8 +VERSION="2.0.2" 14.9 CATEGORY="utilities" 14.10 SHORT_DESC="ITS-based XML translation tool" 14.11 MAINTAINER="al.bobylev@gmail.com" 14.12 LICENSE="GPL3" 14.13 +WEB_SITE="http://itstool.org/" 14.14 + 14.15 TARBALL="$PACKAGE-$VERSION.tar.bz2" 14.16 -WEB_SITE="http://itstool.org/" 14.17 WGET_URL="http://files.itstool.org/itstool/$TARBALL" 14.18 14.19 -DEPENDS="python libxml2-python" 14.20 -BUILD_DEPENDS="" 14.21 +DEPENDS="libxml2-python" 14.22 +BUILD_DEPENDS="libxml2-python" 14.23 14.24 # Rules to configure and make the package. 14.25 compile_rules() 14.26 { 14.27 - cd $src 14.28 - ./configure $CONFIGURE_ARGS && 14.29 - make && make install 14.30 + ./configure $CONFIGURE_ARGS && make && make install 14.31 } 14.32 14.33 # Rules to gen a SliTaz package suitable for Tazpkg. 14.34 genpkg_rules() 14.35 { 14.36 - mkdir -p $fs/usr/share 14.37 - cp -a $install/usr/bin $fs/usr 14.38 - cp -a $install/usr/share/$PACKAGE $fs/usr/share 14.39 + cook_copy_files itstool *.its 14.40 }
15.1 --- a/jpeg-turbo/receipt Mon Jan 30 23:51:27 2017 +0200 15.2 +++ b/jpeg-turbo/receipt Fri Feb 03 12:13:00 2017 +0200 15.3 @@ -1,32 +1,19 @@ 15.4 # SliTaz package receipt. 15.5 15.6 PACKAGE="jpeg-turbo" 15.7 -SOURCE="libjpeg-turbo" 15.8 -VERSION="1.4.2" 15.9 +VERSION="1.5.0" 15.10 CATEGORY="x-window" 15.11 SHORT_DESC="JPEG image programs." 15.12 MAINTAINER="pascal.bellard@slitaz.org" 15.13 LICENSE="MIT" 15.14 -TARBALL="$SOURCE-$VERSION.tar.gz" 15.15 WEB_SITE="http://libjpeg-turbo.virtualgl.org/" 15.16 -WGET_URL="$SF_MIRROR/$SOURCE/$VERSION/$TARBALL" 15.17 TAGS="jpeg jpg" 15.18 15.19 +WANTED="libjpeg-turbo" 15.20 DEPENDS="libjpeg-turbo" 15.21 -BUILD_DEPENDS="nasm" 15.22 - 15.23 -# Rules to configure and make the package. 15.24 -compile_rules() 15.25 -{ 15.26 - ./configure --prefix=/usr --with-jpeg8 \ 15.27 - --mandir=/usr/share/man $CONFIGURE_ARGS && 15.28 - make && 15.29 - make DESTDIR=$DESTDIR install 15.30 -} 15.31 15.32 # Rules to gen a SliTaz package suitable for Tazpkg. 15.33 genpkg_rules() 15.34 { 15.35 - mkdir -p $fs/usr 15.36 - cp -a $install/usr/bin $fs/usr 15.37 + cook_copy_folders bin 15.38 }
16.1 --- a/lcms2-apps/receipt Mon Jan 30 23:51:27 2017 +0200 16.2 +++ b/lcms2-apps/receipt Fri Feb 03 12:13:00 2017 +0200 16.3 @@ -1,19 +1,18 @@ 16.4 # SliTaz package receipt. 16.5 16.6 PACKAGE="lcms2-apps" 16.7 -VERSION="2.7" 16.8 +VERSION="2.8" 16.9 CATEGORY="graphics" 16.10 SHORT_DESC="Open source color management engine (applications)" 16.11 MAINTAINER="al.bobylev@gmail.com" 16.12 LICENSE="MIT" 16.13 WEB_SITE="http://www.littlecms.com/" 16.14 16.15 -DEPENDS="lcms2 libjpeg tiff zlib" 16.16 +DEPENDS="lcms2 libjpeg-turbo tiff zlib" 16.17 WANTED="lcms2" 16.18 16.19 # Rules to gen a SliTaz package suitable for Tazpkg. 16.20 genpkg_rules() 16.21 { 16.22 - mkdir -p $fs/usr 16.23 - cp -a $install/usr/bin $fs/usr 16.24 + cook_copy_folders bin 16.25 }
17.1 --- a/lcms2-dev/receipt Mon Jan 30 23:51:27 2017 +0200 17.2 +++ b/lcms2-dev/receipt Fri Feb 03 12:13:00 2017 +0200 17.3 @@ -1,21 +1,18 @@ 17.4 # SliTaz package receipt. 17.5 17.6 PACKAGE="lcms2-dev" 17.7 -VERSION="2.7" 17.8 +VERSION="2.8" 17.9 CATEGORY="development" 17.10 SHORT_DESC="Open source color management engine (development files)" 17.11 MAINTAINER="al.bobylev@gmail.com" 17.12 LICENSE="MIT" 17.13 WEB_SITE="http://www.littlecms.com/" 17.14 17.15 +WANTED="lcms2" 17.16 DEPENDS="lcms2 lcms2-apps" 17.17 -WANTED="lcms2" 17.18 17.19 # Rules to gen a SliTaz package suitable for Tazpkg. 17.20 genpkg_rules() 17.21 { 17.22 - mkdir -p $fs/usr/lib 17.23 - cp -a $install/usr/include $fs/usr 17.24 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 17.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 17.26 + cook_copy_files *.h *.la *.pc 17.27 }
18.1 --- a/lcms2/receipt Mon Jan 30 23:51:27 2017 +0200 18.2 +++ b/lcms2/receipt Fri Feb 03 12:13:00 2017 +0200 18.3 @@ -1,27 +1,30 @@ 18.4 # SliTaz package receipt. 18.5 18.6 PACKAGE="lcms2" 18.7 -VERSION="2.7" 18.8 +VERSION="2.8" 18.9 CATEGORY="graphics" 18.10 SHORT_DESC="Open source color management engine (library)" 18.11 MAINTAINER="al.bobylev@gmail.com" 18.12 LICENSE="MIT" 18.13 WEB_SITE="http://www.littlecms.com/" 18.14 + 18.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 18.16 WGET_URL="$SF_MIRROR/lcms/$TARBALL" 18.17 18.18 -BUILD_DEPENDS="jpeg-dev zlib-dev tiff-dev" 18.19 +BUILD_DEPENDS="libjpeg-turbo-dev zlib-dev tiff-dev" 18.20 SPLIT="lcms2-apps" 18.21 18.22 # Rules to configure and make the package. 18.23 compile_rules() 18.24 { 18.25 - ./configure $CONFIGURE_ARGS && make && make install 18.26 + ./configure \ 18.27 + --disable-static \ 18.28 + $CONFIGURE_ARGS && 18.29 + make && make install 18.30 } 18.31 18.32 # Rules to gen a SliTaz package suitable for Tazpkg. 18.33 genpkg_rules() 18.34 { 18.35 - mkdir -p $fs/usr/lib 18.36 - cp -a $install/usr/lib/*.so* $fs/usr/lib 18.37 + cook_copy_files *.so* 18.38 }
19.1 --- a/lemon/receipt Mon Jan 30 23:51:27 2017 +0200 19.2 +++ b/lemon/receipt Fri Feb 03 12:13:00 2017 +0200 19.3 @@ -1,19 +1,17 @@ 19.4 # SliTaz package receipt. 19.5 19.6 PACKAGE="lemon" 19.7 -_realver=3081101 19.8 -VERSION="${_realver:0:1}.${_realver:2:1}.${_realver:3:2}.${_realver:6:6}" 19.9 +VERSION="3.16.1" 19.10 CATEGORY="system-tools" 19.11 SHORT_DESC="The LEMON Parser Generator (from the SQLite project)." 19.12 MAINTAINER="pankso@slitaz.org" 19.13 LICENSE="PublicDomain" 19.14 -WEB_SITE="http://www.sqlite.org/" 19.15 +WEB_SITE="https://www.sqlite.org/" 19.16 + 19.17 WANTED="sqlite" 19.18 19.19 # Rules to gen a SliTaz package suitable for Tazpkg. 19.20 genpkg_rules() 19.21 { 19.22 - mkdir -p $fs/usr/bin $fs/usr/share/lemon 19.23 - cp -a $install/usr/bin/lemon $fs/usr/bin 19.24 - cp -a $install/usr/share/lemon/lempar.c $fs/usr/share/lemon 19.25 + cook_copy_files lemon lempar.c 19.26 }
20.1 --- a/libarchive-dev/receipt Mon Jan 30 23:51:27 2017 +0200 20.2 +++ b/libarchive-dev/receipt Fri Feb 03 12:13:00 2017 +0200 20.3 @@ -1,22 +1,19 @@ 20.4 # SliTaz package receipt. 20.5 20.6 PACKAGE="libarchive-dev" 20.7 -VERSION="3.1.2" 20.8 +VERSION="3.2.2" 20.9 CATEGORY="development" 20.10 SHORT_DESC="C librairy and command line tool archive dev files." 20.11 MAINTAINER="erjo@slitaz.org" 20.12 LICENSE="BSD" 20.13 +WEB_SITE="http://www.libarchive.org/" 20.14 + 20.15 WANTED="libarchive" 20.16 -WEB_SITE="http://code.google.com/p/libarchive/" 20.17 - 20.18 -DEPENDS="libarchive" 20.19 +DEPENDS="libarchive libcrypto-dev nettle-dev acl-dev lzo-dev liblzma-dev \ 20.20 +lz4-dev bzip2-dev zlib-dev libxml2-dev" 20.21 20.22 # Rules to gen a SliTaz package suitable for Tazpkg. 20.23 genpkg_rules() 20.24 { 20.25 - mkdir -p $fs/usr/lib 20.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 20.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 20.28 - cp -a $install/usr/include $fs/usr 20.29 + cook_copy_files *.h *.la *.pc 20.30 } 20.31 -
21.1 --- a/libarchive/receipt Mon Jan 30 23:51:27 2017 +0200 21.2 +++ b/libarchive/receipt Fri Feb 03 12:13:00 2017 +0200 21.3 @@ -1,26 +1,25 @@ 21.4 # SliTaz package receipt. 21.5 21.6 PACKAGE="libarchive" 21.7 -VERSION="3.1.2" 21.8 +VERSION="3.2.2" 21.9 CATEGORY="system-tools" 21.10 SHORT_DESC="C librairy and command line tool for reading archive." 21.11 MAINTAINER="erjo@slitaz.org" 21.12 LICENSE="BSD" 21.13 +WEB_SITE="http://www.libarchive.org/" 21.14 + 21.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 21.16 -WEB_SITE="http://www.libarchive.org/" 21.17 WGET_URL="${WEB_SITE}downloads/$TARBALL" 21.18 21.19 -DEPENDS="acl libcrypto liblzma bzlib zlib libxml2" 21.20 -BUILD_DEPENDS="acl-dev attr-dev libcrypto-dev zlib-dev libxml2-dev" 21.21 +DEPENDS="acl attr bzlib libcrypto liblzma libxml2 lz4-lib lzo nettle zlib" 21.22 +BUILD_DEPENDS="e2fsprogs-dev zlib-dev bzip2-dev gettext lz4-dev liblzma-dev \ 21.23 +lzo-dev libxml2-dev expat-dev attr-dev acl-dev nettle-dev openssl-dev" 21.24 21.25 # Rules to configure and make the package. 21.26 compile_rules() 21.27 { 21.28 - cd $src 21.29 ./configure \ 21.30 - --prefix=/usr \ 21.31 - --infodir=/usr/share/info \ 21.32 - --mandir=/usr/share/man \ 21.33 + --disable-static \ 21.34 $CONFIGURE_ARGS && 21.35 make && make -j1 DESTDIR=$DESTDIR install 21.36 } 21.37 @@ -28,8 +27,6 @@ 21.38 # Rules to gen a SliTaz package suitable for Tazpkg. 21.39 genpkg_rules() 21.40 { 21.41 - mkdir -p $fs/usr/lib 21.42 - cp -a $install/usr/bin $fs/usr 21.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 21.44 + cook_copy_folders bin 21.45 + cook_copy_files *.so* 21.46 } 21.47 -
22.1 --- a/libcroco-dev/receipt Mon Jan 30 23:51:27 2017 +0200 22.2 +++ b/libcroco-dev/receipt Fri Feb 03 12:13:00 2017 +0200 22.3 @@ -1,24 +1,19 @@ 22.4 # SliTaz package receipt. 22.5 22.6 PACKAGE="libcroco-dev" 22.7 -VERSION="0.6.4" 22.8 +VERSION="0.6.11" 22.9 CATEGORY="development" 22.10 SHORT_DESC="Libcroco devel files." 22.11 MAINTAINER="pankso@slitaz.org" 22.12 LICENSE="LGPL2" 22.13 -WANTED="libcroco" 22.14 -WEB_SITE="http://www.freespiders.org/projects/libcroco/" 22.15 +WEB_SITE="https://developer.gnome.org/libcroco/" 22.16 HOST_ARCH="i486 arm" 22.17 22.18 -DEPENDS="libcroco pkg-config" 22.19 +WANTED="libcroco" 22.20 +DEPENDS="libcroco pkg-config glib-dev libxml2-dev" 22.21 22.22 # Rules to gen a SliTaz package suitable for Tazpkg. 22.23 genpkg_rules() 22.24 { 22.25 - mkdir -p $fs/usr/lib $fs/usr/bin 22.26 - cp $install/usr/bin/croco-*-config $fs/usr/bin 22.27 - chmod +x $fs/usr/bin/* 22.28 - cp -a $install/usr/include $fs/usr 22.29 - cp -a $install/usr/lib/*.*a $fs/usr/lib 22.30 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 22.31 + cook_copy_files croco-*-config *.h *.la *.pc 22.32 }
23.1 --- a/libcroco/receipt Mon Jan 30 23:51:27 2017 +0200 23.2 +++ b/libcroco/receipt Fri Feb 03 12:13:00 2017 +0200 23.3 @@ -1,23 +1,25 @@ 23.4 # SliTaz package receipt. 23.5 23.6 PACKAGE="libcroco" 23.7 -VERSION="0.6.4" 23.8 +VERSION="0.6.11" 23.9 CATEGORY="system-tools" 23.10 SHORT_DESC="Cascading Style Sheet (CSS) parsing and manipulation toolkit." 23.11 MAINTAINER="pankso@slitaz.org" 23.12 LICENSE="LGPL2" 23.13 -TARBALL="$PACKAGE-$VERSION.tar.xz" 23.14 -WEB_SITE="http://www.freespiders.org/projects/libcroco/" 23.15 -WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:3}/$TARBALL" 23.16 +WEB_SITE="https://developer.gnome.org/libcroco/" 23.17 HOST_ARCH="i486 arm" 23.18 23.19 -DEPENDS="libxml2 glib zlib" 23.20 -BUILD_DEPENDS="libxml2-dev glib-dev zlib-dev" 23.21 +TARBALL="$PACKAGE-$VERSION.tar.xz" 23.22 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION:0:3}/$TARBALL" 23.23 + 23.24 +DEPENDS="glib liblzma libxml2 pcre zlib" 23.25 +BUILD_DEPENDS="libxml2-dev glib-dev zlib-dev gtk-doc" 23.26 23.27 # Rules to configure and make the package. 23.28 compile_rules() 23.29 { 23.30 ./configure \ 23.31 + --disable-static \ 23.32 $CONFIGURE_ARGS && 23.33 make && make install 23.34 } 23.35 @@ -25,7 +27,5 @@ 23.36 # Rules to gen a SliTaz package suitable for Tazpkg. 23.37 genpkg_rules() 23.38 { 23.39 - mkdir -p $fs/usr/lib $fs/usr/bin 23.40 - cp $install/usr/bin/csslint* $fs/usr/bin 23.41 - cp -a $install/usr/lib/*.so* $fs/usr/lib 23.42 + cook_copy_files csslint-${VERSION%.*} *.so* 23.43 }
24.1 --- a/libcurl/receipt Mon Jan 30 23:51:27 2017 +0200 24.2 +++ b/libcurl/receipt Fri Feb 03 12:13:00 2017 +0200 24.3 @@ -1,20 +1,19 @@ 24.4 # SliTaz package receipt. 24.5 24.6 PACKAGE="libcurl" 24.7 -VERSION="7.40.0" 24.8 +VERSION="7.50.1" 24.9 CATEGORY="network" 24.10 SHORT_DESC="Curl library files." 24.11 MAINTAINER="pankso@slitaz.org" 24.12 LICENSE="MIT" 24.13 -WANTED="curl" 24.14 WEB_SITE="http://curl.haxx.se/" 24.15 HOST_ARCH="i486 arm" 24.16 24.17 +WANTED="curl" 24.18 DEPENDS="libidn libssl zlib libcrypto" 24.19 24.20 # Rules to gen a SliTaz package suitable for Tazpkg. 24.21 genpkg_rules() 24.22 { 24.23 - mkdir -p $fs/usr/lib 24.24 - cp -a $install/usr/lib/*.so* $fs/usr/lib 24.25 + cook_copy_files *.so* 24.26 }
25.1 --- a/libffi-dev/receipt Mon Jan 30 23:51:27 2017 +0200 25.2 +++ b/libffi-dev/receipt Fri Feb 03 12:13:00 2017 +0200 25.3 @@ -1,26 +1,19 @@ 25.4 # SliTaz package receipt. 25.5 25.6 PACKAGE="libffi-dev" 25.7 -VERSION="3.1" 25.8 +VERSION="3.2.1" 25.9 CATEGORY="development" 25.10 SHORT_DESC="libffi devel files." 25.11 +MAINTAINER="rcx@zoominternet.net" 25.12 WEB_SITE="http://sourceware.org/libffi/" 25.13 -MAINTAINER="rcx@zoominternet.net" 25.14 LICENSE="MIT" 25.15 -WANTED="libffi" 25.16 HOST_ARCH="i486 arm" 25.17 25.18 -DEPENDS="libffi pkg-config" 25.19 +WANTED="libffi" 25.20 +DEPENDS="libffi" 25.21 25.22 # Rules to gen a SliTaz package suitable for Tazpkg. 25.23 genpkg_rules() 25.24 { 25.25 - mkdir -p $fs/usr/lib $fs/usr/include 25.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 25.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 25.28 - cp -a $install/usr/lib/$WANTED-$VERSION $fs/usr/lib 25.29 - 25.30 - # Copy the headers to the standard location 25.31 - cp -a $install/usr/lib/$WANTED-$VERSION/include/* \ 25.32 - $fs/usr/include 25.33 + cook_copy_files *.h *.la *.pc 25.34 }
26.1 --- a/libffi/receipt Mon Jan 30 23:51:27 2017 +0200 26.2 +++ b/libffi/receipt Fri Feb 03 12:13:00 2017 +0200 26.3 @@ -1,30 +1,36 @@ 26.4 # SliTaz package receipt. 26.5 26.6 PACKAGE="libffi" 26.7 -VERSION="3.1" 26.8 +VERSION="3.2.1" 26.9 CATEGORY="development" 26.10 SHORT_DESC="A portable foreign function interface library." 26.11 MAINTAINER="rcx@zoominternet.net" 26.12 LICENSE="MIT" 26.13 +WEB_SITE="https://sourceware.org/libffi/" 26.14 +HOST_ARCH="i486 arm" 26.15 + 26.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 26.17 -WEB_SITE="http://sourceware.org/libffi/" 26.18 WGET_URL="ftp://sourceware.org/pub/$PACKAGE/$TARBALL" 26.19 -HOST_ARCH="i486 arm" 26.20 26.21 DEPENDS="glibc-base" 26.22 26.23 # Rules to configure and make the package. 26.24 compile_rules() 26.25 { 26.26 + sed -e '/^includesdir/ s/$(libdir).*$/$(includedir)/' \ 26.27 + -i include/Makefile.in 26.28 + sed -e '/^includedir/ s/=.*$/=@includedir@/' \ 26.29 + -e 's/^Cflags: -I${includedir}/Cflags:/' \ 26.30 + -i libffi.pc.in 26.31 + 26.32 ./configure \ 26.33 - --includedir=/usr/include \ 26.34 + --disable-static \ 26.35 $CONFIGURE_ARGS && 26.36 - make && make DESTDIR=$DESTDIR install 26.37 + make && make install 26.38 } 26.39 26.40 # Rules to gen a SliTaz package suitable for Tazpkg. 26.41 genpkg_rules() 26.42 { 26.43 - mkdir -p $fs/usr/lib 26.44 - cp -a $install/usr/lib/*.so* $fs/usr/lib 26.45 + cook_copy_files *.so* 26.46 }
27.1 --- a/libgcrypt-dev/receipt Mon Jan 30 23:51:27 2017 +0200 27.2 +++ b/libgcrypt-dev/receipt Fri Feb 03 12:13:00 2017 +0200 27.3 @@ -1,7 +1,7 @@ 27.4 # SliTaz package receipt. 27.5 27.6 PACKAGE="libgcrypt-dev" 27.7 -VERSION="1.7.1" 27.8 +VERSION="1.7.6" 27.9 CATEGORY="development" 27.10 SHORT_DESC="Cryptographic library based on GnuPG Headers" 27.11 MAINTAINER="erjo@slitaz.org" 27.12 @@ -15,7 +15,5 @@ 27.13 # Rules to gen a SliTaz package suitable for Tazpkg. 27.14 genpkg_rules() 27.15 { 27.16 - cp -a $install/* $fs 27.17 - rm -r $fs/usr/bin/dumpsexp $fs/usr/bin/hmac256 $fs/usr/lib/*.so* \ 27.18 - $fs/usr/share/man 27.19 + cook_copy_files libgcrypt-config mpicalc *.h *.la *.m4 27.20 }
28.1 --- a/libgcrypt/receipt Mon Jan 30 23:51:27 2017 +0200 28.2 +++ b/libgcrypt/receipt Fri Feb 03 12:13:00 2017 +0200 28.3 @@ -1,15 +1,16 @@ 28.4 # SliTaz package receipt. 28.5 28.6 PACKAGE="libgcrypt" 28.7 -VERSION="1.7.1" 28.8 +VERSION="1.7.6" 28.9 CATEGORY="security" 28.10 SHORT_DESC="Cryptographic library based on GnuPG" 28.11 MAINTAINER="erjo@slitaz.org" 28.12 LICENSE="GPL2 LGPL2.1" 28.13 +WEB_SITE="https://www.gnupg.org/related_software/libgcrypt/" 28.14 +HOST_ARCH="i486 arm" 28.15 + 28.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 28.17 -WEB_SITE="https://www.gnupg.org/related_software/libgcrypt/" 28.18 WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgcrypt/$TARBALL" 28.19 -HOST_ARCH="i486 arm" 28.20 28.21 DEPENDS="libgpg-error" 28.22 BUILD_DEPENDS="libgpg-error-dev" 28.23 @@ -18,7 +19,7 @@ 28.24 compile_rules() 28.25 { 28.26 # Integrity check: https://www.gnupg.org/download/integrity_check.html 28.27 - echo "b688add52b622bb96bbd823ba21aa05a116d442f $SRC/$TARBALL" | sha1sum -c || exit 1 28.28 + echo "d2b9e0f413064cfc67188f80d3cbda887c755a62 $SRC/$TARBALL" | sha1sum -c || exit 1 28.29 28.30 case "$ARCH" in 28.31 arm) 28.32 @@ -27,21 +28,16 @@ 28.33 --build=i486-slitaz-linux \ 28.34 --host=arm-slitaz-linux-gnueabi ;; 28.35 *) 28.36 - export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lgpg-error" 28.37 + #export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lgpg-error" 28.38 ./configure \ 28.39 --build=$HOST_SYSTEM \ 28.40 --host=$HOST_SYSTEM ;; 28.41 esac && 28.42 make && make install 28.43 - 28.44 - find $install/usr/share/man -type f -exec gzip -9 \{\} \; 28.45 } 28.46 28.47 # Rules to gen a SliTaz package suitable for Tazpkg. 28.48 genpkg_rules() 28.49 { 28.50 - mkdir -p $fs/usr/bin $fs/usr/lib 28.51 - cp -a $install/usr/bin/dumpsexp $fs/usr/bin 28.52 - cp -a $install/usr/bin/hmac256 $fs/usr/bin 28.53 - cp -a $install/usr/lib/*.so* $fs/usr/lib 28.54 + cook_copy_files dumpsexp hmac256 *.so* 28.55 }
29.1 --- a/libgio-dev/receipt Mon Jan 30 23:51:27 2017 +0200 29.2 +++ b/libgio-dev/receipt Fri Feb 03 12:13:00 2017 +0200 29.3 @@ -1,22 +1,21 @@ 29.4 # SliTaz package receipt. 29.5 29.6 PACKAGE="libgio-dev" 29.7 -VERSION="2.43.3" 29.8 +VERSION="2.48.2" 29.9 CATEGORY="development" 29.10 SHORT_DESC="Glib libgio devel files." 29.11 MAINTAINER="pankso@slitaz.org" 29.12 LICENSE="GPL2" 29.13 -WANTED="glib" 29.14 WEB_SITE="http://www.gtk.org/" 29.15 HOST_ARCH="i486 arm" 29.16 29.17 -DEPENDS="libgio pkg-config" 29.18 +WANTED="glib" 29.19 +DEPENDS="libgio" 29.20 29.21 # Rules to gen a SliTaz package suitable for Tazpkg. 29.22 genpkg_rules() 29.23 { 29.24 - mkdir -p $fs/usr/lib/pkgconfig $fs/usr/include 29.25 - cp -a $install/usr/lib/libgio*.*a $fs/usr/lib 29.26 - cp -a $install/usr/lib/pkgconfig/gio*.pc $fs/usr/lib/pkgconfig 29.27 - cp -a $install/usr/include/gio-unix-2.0 $fs/usr/include 29.28 + cook_copy_folders gio 29.29 + rm -rf $fs/usr/share 29.30 + cook_copy_files libgio*.*a gio*.pc 29.31 }
30.1 --- a/libgio/receipt Mon Jan 30 23:51:27 2017 +0200 30.2 +++ b/libgio/receipt Fri Feb 03 12:13:00 2017 +0200 30.3 @@ -1,20 +1,19 @@ 30.4 # SliTaz package receipt. 30.5 30.6 PACKAGE="libgio" 30.7 -VERSION="2.43.3" 30.8 -CATEGORY="x-window" 30.9 +VERSION="2.48.2" 30.10 +CATEGORY="libs" 30.11 SHORT_DESC="Glib libgio shared library." 30.12 MAINTAINER="pankso@slitaz.org" 30.13 LICENSE="GPL2" 30.14 -WANTED="glib" 30.15 WEB_SITE="http://www.gtk.org/" 30.16 HOST_ARCH="i486 arm" 30.17 30.18 +WANTED="glib" 30.19 DEPENDS="glib" 30.20 30.21 # Rules to gen a SliTaz package suitable for Tazpkg. 30.22 genpkg_rules() 30.23 { 30.24 - mkdir -p $fs/usr/lib 30.25 - cp -a $install/usr/lib/libgio*.so* $fs/usr/lib 30.26 + cook_copy_files libgio*.so* 30.27 }
31.1 --- a/libgpg-error-dev/receipt Mon Jan 30 23:51:27 2017 +0200 31.2 +++ b/libgpg-error-dev/receipt Fri Feb 03 12:13:00 2017 +0200 31.3 @@ -1,7 +1,7 @@ 31.4 # SliTaz package receipt. 31.5 31.6 PACKAGE="libgpg-error-dev" 31.7 -VERSION="1.23" 31.8 +VERSION="1.26" 31.9 CATEGORY="development" 31.10 SHORT_DESC="Commons error messages for GnuPG headers." 31.11 MAINTAINER="erjo@slitaz.org" 31.12 @@ -15,7 +15,6 @@ 31.13 # Rules to gen a SliTaz package suitable for Tazpkg. 31.14 genpkg_rules() 31.15 { 31.16 - cp -a $install/* $fs 31.17 - rm -r $fs/usr/bin/gpg-error $fs/usr/lib/*.so* $fs/usr/share/man 31.18 - rm -r $fs/usr/share/locale 31.19 + cook_copy_files gpg-error-config *.h *.la *.m4 \ 31.20 + *.lisp *.asd *.txt 31.21 }
32.1 --- a/libgpg-error/receipt Mon Jan 30 23:51:27 2017 +0200 32.2 +++ b/libgpg-error/receipt Fri Feb 03 12:13:00 2017 +0200 32.3 @@ -1,37 +1,31 @@ 32.4 # SliTaz package receipt. 32.5 32.6 PACKAGE="libgpg-error" 32.7 -VERSION="1.23" 32.8 +VERSION="1.26" 32.9 CATEGORY="security" 32.10 SHORT_DESC="Commons error messages for GnuPG." 32.11 MAINTAINER="erjo@slitaz.org" 32.12 LICENSE="GPL2" 32.13 WEB_SITE="https://www.gnupg.org/related_software/libgpg-error/" 32.14 +HOST_ARCH="i486 arm" 32.15 + 32.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 32.17 WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgpg-error/$TARBALL" 32.18 -HOST_ARCH="i486 arm" 32.19 32.20 -DEPENDS="" 32.21 +BUILD_DEPENDS="gettext" 32.22 32.23 # Rules to configure and make the package. 32.24 compile_rules() 32.25 { 32.26 # Integrity check: https://www.gnupg.org/download/integrity_check.html 32.27 - echo "c6a0c49211955e924593527b32e4b2736cafcda5 $SRC/$TARBALL" | sha1sum -c || exit 1 32.28 + echo "9a926e7ee6309e539313443555535d49a2a5c9f1 $SRC/$TARBALL" | sha1sum -c || exit 1 32.29 32.30 -# touch src/extra-h.in 32.31 ./configure $CONFIGURE_ARGS && 32.32 make && make DESTDIR=$DESTDIR install 32.33 - 32.34 - find $install/usr/share/man -type f -exec gzip -9 \{\} \; 32.35 } 32.36 32.37 # Rules to gen a SliTaz package suitable for Tazpkg. 32.38 genpkg_rules() 32.39 { 32.40 - mkdir -p $fs/usr/bin $fs/usr/lib $fs/usr/share 32.41 - 32.42 - cp -a $install/usr/bin/gpg-error $fs/usr/bin 32.43 - cp -a $install/usr/lib/*.so* $fs/usr/lib 32.44 - #cp -a $install/usr/share/man $fs/usr/share 32.45 + cook_copy_files gpg-error *.so* 32.46 }
33.1 --- a/libidn-dev/receipt Mon Jan 30 23:51:27 2017 +0200 33.2 +++ b/libidn-dev/receipt Fri Feb 03 12:13:00 2017 +0200 33.3 @@ -1,23 +1,19 @@ 33.4 # SliTaz package receipt. 33.5 33.6 PACKAGE="libidn-dev" 33.7 -VERSION="1.21" 33.8 +VERSION="1.33" 33.9 CATEGORY="development" 33.10 SHORT_DESC="Encode and decode internationalized domain names, dev files." 33.11 MAINTAINER="pascal.bellard@slitaz.org" 33.12 LICENSE="GPL3 LGPL2.1" 33.13 -WEB_SITE="http://www.gnu.org/software/libidn/" 33.14 -WANTED="libidn" 33.15 +WEB_SITE="https://www.gnu.org/software/libidn/" 33.16 HOST_ARCH="i486 arm" 33.17 33.18 -DEPENDS="libidn pkg-config" 33.19 +WANTED="libidn" 33.20 +DEPENDS="libidn" 33.21 33.22 # Rules to gen a SliTaz package suitable for Tazpkg. 33.23 genpkg_rules() 33.24 { 33.25 - mkdir -p $fs/usr/lib 33.26 - cp -a $install/usr/include $fs/usr 33.27 - cp -a $install/usr/lib/*a $fs/usr/lib 33.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 33.29 + cook_copy_files *.h *.la *.pc 33.30 } 33.31 -
34.1 --- a/libidn/receipt Mon Jan 30 23:51:27 2017 +0200 34.2 +++ b/libidn/receipt Fri Feb 03 12:13:00 2017 +0200 34.3 @@ -1,30 +1,30 @@ 34.4 # SliTaz package receipt. 34.5 34.6 PACKAGE="libidn" 34.7 -VERSION="1.21" 34.8 +VERSION="1.33" 34.9 CATEGORY="system-tools" 34.10 SHORT_DESC="Encode and decode internationalized domain names." 34.11 MAINTAINER="pascal.bellard@slitaz.org" 34.12 LICENSE="GPL3 LGPL2.1" 34.13 +WEB_SITE="https://www.gnu.org/software/libidn/" 34.14 +HOST_ARCH="i486 arm" 34.15 + 34.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 34.17 -WEB_SITE="http://www.gnu.org/software/$PACKAGE/" 34.18 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 34.19 -HOST_ARCH="i486 arm" 34.20 + 34.21 +BUILD_DEPENDS="gettext" 34.22 34.23 # Rules to configure and make the package. 34.24 compile_rules() 34.25 { 34.26 - cd $src 34.27 - ./configure $CONFIGURE_ARGS && 34.28 - make $MAKEFLAGS && 34.29 - make install 34.30 + ./configure \ 34.31 + --disable-static \ 34.32 + $CONFIGURE_ARGS && 34.33 + make $MAKEFLAGS && make install 34.34 } 34.35 34.36 # Rules to gen a SliTaz package suitable for Tazpkg. 34.37 genpkg_rules() 34.38 { 34.39 - mkdir -p $fs/usr/lib 34.40 - cp -a $install/usr/bin $fs/usr 34.41 - cp -a $install/usr/lib/*.so* $fs/usr/lib 34.42 + cook_copy_files idn *.so* 34.43 } 34.44 -
35.1 --- a/libjpeg-turbo-dev/receipt Mon Jan 30 23:51:27 2017 +0200 35.2 +++ b/libjpeg-turbo-dev/receipt Fri Feb 03 12:13:00 2017 +0200 35.3 @@ -1,21 +1,19 @@ 35.4 # SliTaz package receipt. 35.5 35.6 PACKAGE="libjpeg-turbo-dev" 35.7 -VERSION="1.4.2" 35.8 -CATEGORY="x-window" 35.9 +VERSION="1.5.0" 35.10 +CATEGORY="development" 35.11 SHORT_DESC="JPEG image libs." 35.12 MAINTAINER="pascal.bellard@slitaz.org" 35.13 LICENSE="MIT" 35.14 WEB_SITE="http://libjpeg-turbo.virtualgl.org/" 35.15 -WANTED="jpeg-turbo" 35.16 TAGS="jpeg jpg" 35.17 35.18 +WANTED="libjpeg-turbo" 35.19 DEPENDS="libjpeg-turbo" 35.20 35.21 # Rules to gen a SliTaz package suitable for Tazpkg. 35.22 genpkg_rules() 35.23 { 35.24 - mkdir -p $fs/usr/lib 35.25 - cp -a $install/usr/lib/*a $fs/usr/lib 35.26 - cp -a $install/usr/include $fs/usr 35.27 + cook_copy_files *.h *.la *.pc 35.28 }
36.1 --- a/libjpeg-turbo/receipt Mon Jan 30 23:51:27 2017 +0200 36.2 +++ b/libjpeg-turbo/receipt Fri Feb 03 12:13:00 2017 +0200 36.3 @@ -1,19 +1,34 @@ 36.4 # SliTaz package receipt. 36.5 36.6 PACKAGE="libjpeg-turbo" 36.7 -VERSION="1.4.2" 36.8 -CATEGORY="x-window" 36.9 +VERSION="1.5.0" 36.10 +CATEGORY="libs" 36.11 SHORT_DESC="JPEG image libs." 36.12 MAINTAINER="pascal.bellard@slitaz.org" 36.13 LICENSE="MIT" 36.14 WEB_SITE="http://libjpeg-turbo.virtualgl.org/" 36.15 -WANTED="jpeg-turbo" 36.16 +TAGS="jpeg jpg" 36.17 PROVIDE="libjpeg" 36.18 -TAGS="jpeg jpg" 36.19 + 36.20 +TARBALL="$PACKAGE-$VERSION.tar.gz" 36.21 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 36.22 + 36.23 +BUILD_DEPENDS="nasm" 36.24 +SPLIT="jpeg-turbo" 36.25 + 36.26 +# Rules to configure and make the package. 36.27 +compile_rules() 36.28 +{ 36.29 + ./configure \ 36.30 + --with-jpeg8 \ 36.31 + --disable-static \ 36.32 + --docdir=/usr/share/doc/$PACKAGE-$VERSION \ 36.33 + $CONFIGURE_ARGS && 36.34 + make && make install 36.35 +} 36.36 36.37 # Rules to gen a SliTaz package suitable for Tazpkg. 36.38 genpkg_rules() 36.39 { 36.40 - mkdir -p $fs/usr/lib 36.41 - cp -a $install/usr/lib/*.so* $fs/usr/lib 36.42 + cook_copy_files *.so* 36.43 }
37.1 --- a/libpng+apng-dev/receipt Mon Jan 30 23:51:27 2017 +0200 37.2 +++ b/libpng+apng-dev/receipt Fri Feb 03 12:13:00 2017 +0200 37.3 @@ -1,7 +1,7 @@ 37.4 # SliTaz package receipt. 37.5 37.6 PACKAGE="libpng+apng-dev" 37.7 -VERSION="1.6.2" 37.8 +VERSION="1.6.28" 37.9 CATEGORY="development" 37.10 SHORT_DESC="Development files for libpng (with APNG support)" 37.11 MAINTAINER="al.bobylev@gmail.com" 37.12 @@ -10,17 +10,10 @@ 37.13 HOST_ARCH="i486 arm" 37.14 37.15 WANTED="libpng+apng" 37.16 -DEPENDS="libpng+apng pkg-config" 37.17 +DEPENDS="libpng+apng" 37.18 37.19 # Rules to gen a SliTaz package suitable for Tazpkg. 37.20 genpkg_rules() 37.21 { 37.22 - mkdir -p \ 37.23 - $fs/usr/lib \ 37.24 - $fs/usr/share/licenses 37.25 - cp -a $install/usr/bin $fs/usr 37.26 - cp -a $install/usr/include $fs/usr 37.27 - cp -a $install/usr/lib/*.la $fs/usr/lib 37.28 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 37.29 - cp -a $src/LICENSE $fs/usr/share/licenses/${PACKAGE%-dev}.txt 37.30 + cook_copy_files libpng*-config *.h *.la *.pc 37.31 }
38.1 --- a/libpng+apng/receipt Mon Jan 30 23:51:27 2017 +0200 38.2 +++ b/libpng+apng/receipt Fri Feb 03 12:13:00 2017 +0200 38.3 @@ -1,21 +1,21 @@ 38.4 # SliTaz package receipt. 38.5 38.6 PACKAGE="libpng+apng" 38.7 -PROVIDE="libpng" 38.8 -SOURCE="libpng" 38.9 -VERSION="1.6.2" 38.10 +VERSION="1.6.28" 38.11 SERIES="libpng16" 38.12 CATEGORY="x-window" 38.13 SHORT_DESC="Loads and saves PNG files (with APNG support)" 38.14 MAINTAINER="al.bobylev@gmail.com" 38.15 LICENSE="zlib/libpng" 38.16 WEB_SITE="http://www.libpng.org/pub/png/libpng.html" 38.17 -TARBALL="$SOURCE-$VERSION.tar.xz" 38.18 -WGET_URL="$SF_MIRROR/$SOURCE/$TARBALL" 38.19 HOST_ARCH="i486 arm" 38.20 +PROVIDE="libpng" 38.21 38.22 -PATCH="$SOURCE-$VERSION-apng.patch.gz" 38.23 -PATCH_URL="$SF_MIRROR/apng/$SOURCE/$SERIES/$PATCH" 38.24 +TARBALL="libpng-$VERSION.tar.xz" 38.25 +WGET_URL="$SF_MIRROR/libpng/$TARBALL" 38.26 + 38.27 +PATCH="libpng-$VERSION-apng.patch.gz" 38.28 +PATCH_URL="$SF_MIRROR/apng/libpng/$SERIES/$PATCH" 38.29 38.30 DEPENDS="zlib" 38.31 BUILD_DEPENDS="gawk zlib-dev" 38.32 @@ -25,23 +25,20 @@ 38.33 { 38.34 [ -s "$SRC/$PATCH" ] || wget -O "$SRC/$PATCH" $PATCH_URL 38.35 gzip -cd $SRC/$PATCH | patch -p0 38.36 + 38.37 ./configure \ 38.38 - --prefix=/usr \ 38.39 --disable-static \ 38.40 $CONFIGURE_ARGS && 38.41 - make && 38.42 - case "$ARCH" in 38.43 - arm*) 38.44 - make DESTDIR=$DESTDIR install ;; 38.45 - *) 38.46 - make check | tr [A-Z] [a-z] && 38.47 - make DESTDIR=$DESTDIR install ;; 38.48 - esac 38.49 + make && make install 38.50 + 38.51 + # Misc png tools 38.52 + cd contrib/pngminus 38.53 + make PNGLIB="-L$DESTDIR/usr/lib -lpng" -f makefile.std png2pnm pnm2png 38.54 + cp -a png2pnm pnm2png $DESTDIR/usr/bin 38.55 } 38.56 38.57 # Rules to gen a SliTaz package suitable for Tazpkg. 38.58 genpkg_rules() 38.59 { 38.60 - mkdir -p $fs/usr/lib 38.61 - cp -a $install/usr/lib/*.so* $fs/usr/lib 38.62 + cook_copy_files png2pnm pnm2png pngfix png-fix-itxt *.so* 38.63 }
39.1 --- a/libpng-dev/receipt Mon Jan 30 23:51:27 2017 +0200 39.2 +++ b/libpng-dev/receipt Fri Feb 03 12:13:00 2017 +0200 39.3 @@ -1,23 +1,19 @@ 39.4 # SliTaz package receipt. 39.5 39.6 PACKAGE="libpng-dev" 39.7 -VERSION="1.2.56" 39.8 +VERSION="1.6.28" 39.9 CATEGORY="development" 39.10 SHORT_DESC="PNG images library devel files." 39.11 MAINTAINER="pankso@slitaz.org" 39.12 LICENSE="zlib/libpng" 39.13 -WANTED="libpng" 39.14 WEB_SITE="http://libpng.org/pub/png/libpng.html" 39.15 HOST_ARCH="i486 arm" 39.16 39.17 -DEPENDS="libpng" 39.18 +WANTED="libpng" 39.19 +DEPENDS="libpng zlib-dev" 39.20 39.21 # Rules to gen a SliTaz package suitable for Tazpkg. 39.22 genpkg_rules() 39.23 { 39.24 - mkdir -p $fs/usr/lib 39.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 39.26 - cp -a $install/usr/bin $fs/usr 39.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 39.28 - cp -a $install/usr/include $fs/usr 39.29 + cook_copy_files libpng*-config *.h *.la *.pc 39.30 }
40.1 --- a/libpng/receipt Mon Jan 30 23:51:27 2017 +0200 40.2 +++ b/libpng/receipt Fri Feb 03 12:13:00 2017 +0200 40.3 @@ -1,18 +1,19 @@ 40.4 # SliTaz package receipt. 40.5 40.6 PACKAGE="libpng" 40.7 -VERSION="1.2.56" 40.8 -CATEGORY="x-window" 40.9 +VERSION="1.6.28" 40.10 +CATEGORY="libs" 40.11 SHORT_DESC="PNG images library." 40.12 MAINTAINER="pankso@slitaz.org" 40.13 LICENSE="zlib/libpng" 40.14 -TARBALL="$PACKAGE-$VERSION.tar.xz" 40.15 WEB_SITE="http://libpng.org/pub/png/libpng.html" 40.16 -WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 40.17 HOST_ARCH="i486 arm" 40.18 40.19 +TARBALL="$PACKAGE-$VERSION.tar.xz" 40.20 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 40.21 + 40.22 DEPENDS="zlib" 40.23 -BUILD_DEPENDS="pkg-config gawk zlib-dev" 40.24 +BUILD_DEPENDS="gawk zlib-dev" 40.25 40.26 # Handle cross compilation. 40.27 case "$ARCH" in 40.28 @@ -22,25 +23,19 @@ 40.29 # Rules to configure and make the package. 40.30 compile_rules() 40.31 { 40.32 - cd $src 40.33 ./configure \ 40.34 - --enable-shared \ 40.35 - --prefix=/usr \ 40.36 - --mandir=/usr/share/man \ 40.37 + --disable-static \ 40.38 $CONFIGURE_ARGS && 40.39 make && 40.40 make DESTDIR=$DESTDIR install 40.41 40.42 cd contrib/pngminus 40.43 make PNGLIB="-L$DESTDIR/usr/lib -lpng" -f makefile.std png2pnm pnm2png 40.44 - mkdir -p $DESTDIR/usr/bin 40.45 cp -a png2pnm pnm2png $DESTDIR/usr/bin 40.46 } 40.47 40.48 # Rules to gen a SliTaz package suitable for Tazpkg. 40.49 genpkg_rules() 40.50 { 40.51 - mkdir -p $fs/usr/lib 40.52 - cp -a $install/usr/lib/libpng*.so* $fs/usr/lib 40.53 - cp -a $install/usr/bin $fs/usr 40.54 + cook_copy_files png2pnm pnm2png pngfix png-fix-itxt *.so* 40.55 }
41.1 --- a/libsqlite-tcl/receipt Mon Jan 30 23:51:27 2017 +0200 41.2 +++ b/libsqlite-tcl/receipt Fri Feb 03 12:13:00 2017 +0200 41.3 @@ -1,21 +1,19 @@ 41.4 # SliTaz package receipt. 41.5 41.6 PACKAGE="libsqlite-tcl" 41.7 -_realver=3081101 41.8 -VERSION="${_realver:0:1}.${_realver:2:1}.${_realver:3:2}.${_realver:6:6}" 41.9 +VERSION="3.16.1" 41.10 CATEGORY="office" 41.11 SHORT_DESC="Small SQL database engine, tcl library." 41.12 MAINTAINER="erjo@slitaz.org" 41.13 LICENSE="PublicDomain" 41.14 WEB_SITE="http://www.sqlite.org/" 41.15 -WANTED="sqlite" 41.16 HOST_ARCH="i486 arm" 41.17 41.18 +WANTED="sqlite" 41.19 DEPENDS="libsqlite tcl" 41.20 41.21 # Rules to gen a SliTaz package suitable for Tazpkg. 41.22 genpkg_rules() 41.23 { 41.24 - mkdir -p $fs/usr/lib 41.25 - cp -a $install/usr/lib/tcl* $fs/usr/lib 41.26 + cook_copy_folders tcl* 41.27 }
42.1 --- a/libsqlite/receipt Mon Jan 30 23:51:27 2017 +0200 42.2 +++ b/libsqlite/receipt Fri Feb 03 12:13:00 2017 +0200 42.3 @@ -1,19 +1,18 @@ 42.4 # SliTaz package receipt. 42.5 42.6 PACKAGE="libsqlite" 42.7 -_realver=3081101 42.8 -VERSION="${_realver:0:1}.${_realver:2:1}.${_realver:3:2}.${_realver:6:6}" 42.9 +VERSION="3.16.1" 42.10 CATEGORY="office" 42.11 SHORT_DESC="Small SQL database engine." 42.12 MAINTAINER="erjo@slitaz.org" 42.13 LICENSE="PublicDomain" 42.14 -WEB_SITE="http://www.sqlite.org/" 42.15 +WEB_SITE="https://www.sqlite.org/" 42.16 +HOST_ARCH="i486 arm" 42.17 + 42.18 WANTED="sqlite" 42.19 -HOST_ARCH="i486 arm" 42.20 42.21 # Rules to gen a SliTaz package suitable for Tazpkg. 42.22 genpkg_rules() 42.23 { 42.24 - mkdir -p $fs/usr/lib 42.25 - cp -a $install/usr/lib/*.so* $fs/usr/lib 42.26 + cook_copy_files libsqlite3.so* 42.27 }
43.1 --- a/libxslt-dev/receipt Mon Jan 30 23:51:27 2017 +0200 43.2 +++ b/libxslt-dev/receipt Fri Feb 03 12:13:00 2017 +0200 43.3 @@ -1,29 +1,19 @@ 43.4 # SliTaz package receipt. 43.5 43.6 PACKAGE="libxslt-dev" 43.7 -VERSION="1.1.26" 43.8 +VERSION="1.1.29" 43.9 CATEGORY="development" 43.10 SHORT_DESC="XSLT devel files support for libxml2." 43.11 MAINTAINER="pankso@slitaz.org" 43.12 LICENSE="MIT" 43.13 -WANTED="libxslt" 43.14 WEB_SITE="http://xmlsoft.org/" 43.15 HOST_ARCH="i486 arm" 43.16 43.17 +WANTED="libxslt" 43.18 DEPENDS="libxslt libxslt-python libgcrypt-dev libxml2-dev zlib-dev" 43.19 43.20 # Rules to gen a SliTaz package suitable for Tazpkg. 43.21 genpkg_rules() 43.22 { 43.23 - mkdir -p $fs/usr/lib $fs/usr/bin $fs/usr/share 43.24 - 43.25 - cp -a $install/usr/lib/*.*a $fs/usr/lib 43.26 - cp -a $install/usr/lib/*.sh $fs/usr/lib 43.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 43.28 - 43.29 - cp $install/usr/bin/xslt-config $fs/usr/bin 43.30 - chmod +x $fs/usr/bin/* 43.31 - 43.32 - cp -a $install/usr/include $fs/usr 43.33 - cp -a $install/usr/share/aclocal $fs/usr/share 43.34 + cook_copy_files xslt-config *.h libxslt.la libexslt.la *.sh *.pc *.m4 43.35 }
44.1 --- a/libxslt-python/receipt Mon Jan 30 23:51:27 2017 +0200 44.2 +++ b/libxslt-python/receipt Fri Feb 03 12:13:00 2017 +0200 44.3 @@ -1,7 +1,7 @@ 44.4 # SliTaz package receipt. 44.5 44.6 PACKAGE="libxslt-python" 44.7 -VERSION="1.1.26" 44.8 +VERSION="1.1.29" 44.9 CATEGORY="development" 44.10 SHORT_DESC="python module for libxslt" 44.11 MAINTAINER="slaxemulator@gmail.com" 44.12 @@ -14,9 +14,5 @@ 44.13 # Rules to gen a SliTaz package suitable for Tazpkg. 44.14 genpkg_rules() 44.15 { 44.16 - mkdir -p $fs/usr/lib 44.17 - # Python module 44.18 - PYTHON_LIB=python$(grep ^VERSION= $WOK/python/receipt | sed 's/.*"\(...\).*/\1/') 44.19 - cp -a $install/usr/lib/$PYTHON_LIB $fs/usr/lib 44.20 + cook_copy_folders python* 44.21 } 44.22 -
45.1 --- a/libxslt/receipt Mon Jan 30 23:51:27 2017 +0200 45.2 +++ b/libxslt/receipt Fri Feb 03 12:13:00 2017 +0200 45.3 @@ -1,19 +1,20 @@ 45.4 # SliTaz package receipt. 45.5 45.6 PACKAGE="libxslt" 45.7 -VERSION="1.1.26" 45.8 +VERSION="1.1.29" 45.9 CATEGORY="system-tools" 45.10 SHORT_DESC="XSLT support for libxml2." 45.11 MAINTAINER="pankso@slitaz.org" 45.12 LICENSE="MIT" 45.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 45.14 WEB_SITE="http://www.xmlsoft.org/XSLT/" 45.15 -WGET_URL="ftp://xmlsoft.org/libxslt/$TARBALL" 45.16 HOST_ARCH="i486 arm" 45.17 45.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 45.19 +WGET_URL="http://xmlsoft.org/sources/$TARBALL" 45.20 + 45.21 DEPENDS="libgcrypt libgpg-error libxml2 zlib" 45.22 -BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev \ 45.23 -python-dev" 45.24 +BUILD_DEPENDS="libgcrypt-dev libgpg-error-dev libxml2-dev zlib-dev python-dev" 45.25 +SPLIT="libxslt-python" 45.26 45.27 # Handle cross compilation 45.28 case "$ARCH" in 45.29 @@ -23,7 +24,9 @@ 45.30 # Rules to configure and make the package. 45.31 compile_rules() 45.32 { 45.33 - ./configure $CONFIGURE_ARGS && 45.34 + ./configure \ 45.35 + --disable-static \ 45.36 + $CONFIGURE_ARGS && 45.37 make && 45.38 make install 2>&1 | grep -v 'html/index.sgml' 45.39 } 45.40 @@ -31,8 +34,5 @@ 45.41 # Rules to gen a SliTaz package suitable for Tazpkg. 45.42 genpkg_rules() 45.43 { 45.44 - mkdir -p $fs/usr/lib/libxslt-plugins 45.45 - cp -a $install/usr/lib/*.so* $fs/usr/lib 45.46 - cp -a $install/usr/bin $fs/usr 45.47 - rm $fs/usr/bin/xslt-config 45.48 + cook_copy_files xsltproc libxslt.so* libexslt.so* 45.49 }
46.1 --- a/lz4-dev/receipt Mon Jan 30 23:51:27 2017 +0200 46.2 +++ b/lz4-dev/receipt Fri Feb 03 12:13:00 2017 +0200 46.3 @@ -1,21 +1,18 @@ 46.4 # SliTaz package receipt. 46.5 46.6 PACKAGE="lz4-dev" 46.7 -VERSION="131" 46.8 +VERSION="1.7.5" 46.9 CATEGORY="development" 46.10 SHORT_DESC="LZ4 development files." 46.11 MAINTAINER="pascal.bellard@slitaz.org" 46.12 LICENSE="BSD" 46.13 +WEB_SITE="http://lz4.github.io/lz4/" 46.14 + 46.15 WANTED="lz4" 46.16 -WEB_SITE="http://www.lz4.org/" 46.17 - 46.18 DEPENDS="pkg-config lz4-lib" 46.19 46.20 # Rules to gen a SliTaz package suitable for Tazpkg. 46.21 genpkg_rules() 46.22 { 46.23 - mkdir -p $fs/usr/lib 46.24 - cp -a $install/usr/lib/*.a $fs/usr/lib 46.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 46.26 - cp -a $install/usr/include $fs/usr 46.27 + cook_copy_files *.h *.a *.pc 46.28 }
47.1 --- a/lz4-lib/receipt Mon Jan 30 23:51:27 2017 +0200 47.2 +++ b/lz4-lib/receipt Fri Feb 03 12:13:00 2017 +0200 47.3 @@ -1,17 +1,17 @@ 47.4 # SliTaz package receipt. 47.5 47.6 PACKAGE="lz4-lib" 47.7 -VERSION="131" 47.8 +VERSION="1.7.5" 47.9 CATEGORY="base-system" 47.10 SHORT_DESC="The lz4c compressor shared library" 47.11 MAINTAINER="pascal.bellard@slitaz.org" 47.12 LICENSE="BSD" 47.13 +WEB_SITE="http://lz4.github.io/lz4/" 47.14 + 47.15 WANTED="lz4" 47.16 -WEB_SITE="http://www.lz4.org/" 47.17 47.18 # Rules to gen a SliTaz package suitable for Tazpkg. 47.19 genpkg_rules() 47.20 { 47.21 - mkdir -p $fs/usr/lib 47.22 - cp -a $install/usr/lib/*.so* $fs/usr/lib 47.23 + cook_copy_files *.so* 47.24 }
48.1 --- a/lz4/receipt Mon Jan 30 23:51:27 2017 +0200 48.2 +++ b/lz4/receipt Fri Feb 03 12:13:00 2017 +0200 48.3 @@ -1,28 +1,27 @@ 48.4 # SliTaz package receipt. 48.5 48.6 PACKAGE="lz4" 48.7 -VERSION="131" 48.8 +VERSION="1.7.5" 48.9 CATEGORY="base-system" 48.10 SHORT_DESC="High speed lossless compressor." 48.11 MAINTAINER="pascal.bellard@slitaz.org" 48.12 LICENSE="BSD" 48.13 -WEB_SITE="http://www.lz4.org/" 48.14 -TARBALL="$PACKAGE-r$VERSION.tar.gz" 48.15 -WGET_URL="https://github.com/Cyan4973/lz4/archive/r$VERSION.tar.gz" 48.16 +WEB_SITE="http://lz4.github.io/lz4/" 48.17 TAGS="compression" 48.18 48.19 -BUILD_DEPENDS="wget" 48.20 +TARBALL="$PACKAGE-$VERSION.tar.gz" 48.21 +WGET_URL="$GITHUB/lz4/lz4/tarball/v$VERSION" 48.22 + 48.23 +SPLIT="lz4-lib lz4c" 48.24 48.25 # Rules to configure and make the package. 48.26 compile_rules() 48.27 { 48.28 - find -type f | xargs sed -i 's|usr/local|usr|' 48.29 - make && make DESTDIR=$DESTDIR install 48.30 + make && make PREFIX=/usr DESTDIR=$DESTDIR install 48.31 } 48.32 48.33 # Rules to gen a SliTaz package suitable for Tazpkg. 48.34 genpkg_rules() 48.35 { 48.36 - mkdir -p $fs/usr/bin 48.37 - cp -a $install/usr/bin/lz4 $fs/usr/bin 48.38 + cook_copy_files lz4 unlz4 lz4cat 48.39 }
49.1 --- a/lz4c/receipt Mon Jan 30 23:51:27 2017 +0200 49.2 +++ b/lz4c/receipt Fri Feb 03 12:13:00 2017 +0200 49.3 @@ -1,17 +1,17 @@ 49.4 # SliTaz package receipt. 49.5 49.6 PACKAGE="lz4c" 49.7 -VERSION="131" 49.8 +VERSION="1.7.5" 49.9 CATEGORY="base-system" 49.10 SHORT_DESC="The lz4c compressor" 49.11 MAINTAINER="pascal.bellard@slitaz.org" 49.12 LICENSE="BSD" 49.13 +WEB_SITE="http://lz4.github.io/lz4/" 49.14 + 49.15 WANTED="lz4" 49.16 -WEB_SITE="http://www.lz4.org/" 49.17 49.18 # Rules to gen a SliTaz package suitable for Tazpkg. 49.19 genpkg_rules() 49.20 { 49.21 - mkdir -p $fs/usr/bin 49.22 - cp -a $install/usr/bin/lz4c $fs/usr/bin 49.23 + cook_copy_files lz4c 49.24 }
50.1 --- a/lz5-dev/receipt Mon Jan 30 23:51:27 2017 +0200 50.2 +++ b/lz5-dev/receipt Fri Feb 03 12:13:00 2017 +0200 50.3 @@ -1,20 +1,18 @@ 50.4 # SliTaz package receipt. 50.5 50.6 PACKAGE="lz5-dev" 50.7 -VERSION="1.4.1" 50.8 +VERSION="1.5" 50.9 CATEGORY="development" 50.10 SHORT_DESC="A modification of LZ4 with a better ratio, delevlopment files." 50.11 MAINTAINER="pascal.bellard@slitaz.org" 50.12 LICENSE="BSD GPL2" 50.13 WEB_SITE="https://github.com/inikep/lz5" 50.14 + 50.15 WANTED="lz5" 50.16 - 50.17 -DEPENDS="lz5 pkg-config" 50.18 +DEPENDS="lz5" 50.19 50.20 # Rules to gen a SliTaz package suitable for Tazpkg. 50.21 genpkg_rules() 50.22 { 50.23 - mkdir -p $fs/usr/ 50.24 - cp -a $install/usr/include $fs/usr/ 50.25 - cp -a $install/usr/lib $fs/usr/ 50.26 + cook_copy_folders include lib 50.27 }
51.1 --- a/lz5/receipt Mon Jan 30 23:51:27 2017 +0200 51.2 +++ b/lz5/receipt Fri Feb 03 12:13:00 2017 +0200 51.3 @@ -1,27 +1,25 @@ 51.4 # SliTaz package receipt. 51.5 51.6 PACKAGE="lz5" 51.7 -VERSION="1.4.1" 51.8 +VERSION="1.5" 51.9 CATEGORY="base-system" 51.10 SHORT_DESC="A modification of LZ4 with a better ratio but slower." 51.11 MAINTAINER="pascal.bellard@slitaz.org" 51.12 LICENSE="BSD GPL2" 51.13 +WEB_SITE="https://github.com/inikep/lz5" 51.14 + 51.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 51.16 -WEB_SITE="https://github.com/inikep/lz5" 51.17 -WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 51.18 - 51.19 -BUILD_DEPENDS="pkg-config" 51.20 +WGET_URL="$GITHUB/inikep/lz5/tarball/v$VERSION" 51.21 51.22 # Rules to configure and make the package. 51.23 compile_rules() 51.24 { 51.25 - sed -i 's|/usr/local|/usr|' Makefile */Makefile 51.26 make && 51.27 - make DESTDIR=$DESTDIR install 51.28 + make PREFIX=/usr DESTDIR=$DESTDIR install 51.29 } 51.30 51.31 # Rules to gen a SliTaz package suitable for Tazpkg. 51.32 genpkg_rules() 51.33 { 51.34 - cp -a $install/bin $fs/ 51.35 + cook_copy_folders bin 51.36 }
52.1 --- a/lzham_codec/receipt Mon Jan 30 23:51:27 2017 +0200 52.2 +++ b/lzham_codec/receipt Fri Feb 03 12:13:00 2017 +0200 52.3 @@ -6,23 +6,28 @@ 52.4 SHORT_DESC="Lossless data compression codec with LZMA-like ratios but 1.5x-8x faster decompression speed." 52.5 MAINTAINER="pascal.bellard@slitaz.org" 52.6 LICENSE="MIT" 52.7 -TARBALL="$PACKAGE-$VERSION.tar.gz" 52.8 WEB_SITE="https://github.com/richgel999/lzham_codec" 52.9 -WGET_URL="$WEB_SITE/archive/v${VERSION/./_}_release.tar.gz" 52.10 TAGS="compression" 52.11 52.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 52.13 +WGET_URL="$GITHUB/richgel999/lzham_codec/tarball/v1_0_stable1" 52.14 + 52.15 DEPENDS="gcc-lib-base" 52.16 -BUILD_DEPENDS="wget cmake" 52.17 +BUILD_DEPENDS="cmake" 52.18 52.19 # Rules to configure and make the package. 52.20 compile_rules() 52.21 { 52.22 - cmake . -DBUILD_X64=OFF -DCMAKE_BUILD_TYPE=Release && make 52.23 + cmake . -DBUILD_X64=OFF -DCMAKE_BUILD_TYPE=Release \ 52.24 + -DCMAKE_INSTALL_PREFIX=/usr && 52.25 + make && make install 52.26 + 52.27 + mkdir -p $install/usr/bin 52.28 + cp -a $src/bin_linux/lzhamtest $install/usr/bin 52.29 } 52.30 52.31 # Rules to gen a SliTaz package suitable for Tazpkg. 52.32 genpkg_rules() 52.33 { 52.34 - mkdir -p $fs/usr/bin 52.35 - cp -a $src/bin_linux/lzhamtest $fs/usr/bin 52.36 + cook_copy_folders bin lib 52.37 }
53.1 --- a/lzo-dev/receipt Mon Jan 30 23:51:27 2017 +0200 53.2 +++ b/lzo-dev/receipt Fri Feb 03 12:13:00 2017 +0200 53.3 @@ -14,7 +14,5 @@ 53.4 # Rules to gen a SliTaz package suitable for Tazpkg. 53.5 genpkg_rules() 53.6 { 53.7 - mkdir -p $fs/usr/lib 53.8 - cp -a $install/usr/include $fs/usr 53.9 - cp -a $install/usr/lib/*.*a $fs/usr/lib 53.10 + cook_copy_files *.h *.la 53.11 }
54.1 --- a/lzo/receipt Mon Jan 30 23:51:27 2017 +0200 54.2 +++ b/lzo/receipt Fri Feb 03 12:13:00 2017 +0200 54.3 @@ -6,23 +6,25 @@ 54.4 SHORT_DESC="Data compression library" 54.5 MAINTAINER="erjo@slitaz.org" 54.6 LICENSE="GPL2" 54.7 +WEB_SITE="http://www.oberhumer.com/opensource/lzo/" 54.8 +HOST_ARCH="i486 arm" 54.9 + 54.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 54.11 -WEB_SITE="http://www.oberhumer.com/opensource/lzo/download/" 54.12 -WGET_URL="$WEB_SITE$TARBALL" 54.13 -HOST_ARCH="i486 arm" 54.14 +WGET_URL="${WEB_SITE}download/$TARBALL" 54.15 54.16 # Rules to configure and make the package. 54.17 compile_rules() 54.18 { 54.19 ./configure \ 54.20 --enable-shared \ 54.21 + --disable-static \ 54.22 + --docdir=/usr/share/doc/$PACKAGE-$VERSION \ 54.23 $CONFIGURE_ARGS && 54.24 - make && make install 54.25 + make && make install 54.26 } 54.27 54.28 # Rules to gen a SliTaz package suitable for Tazpkg. 54.29 genpkg_rules() 54.30 { 54.31 - mkdir -p $fs/usr/lib 54.32 - cp -a $install/usr/lib/*.so* $fs/usr/lib 54.33 + cook_copy_files *.so* 54.34 }
55.1 --- a/lzop/receipt Mon Jan 30 23:51:27 2017 +0200 55.2 +++ b/lzop/receipt Fri Feb 03 12:13:00 2017 +0200 55.3 @@ -6,10 +6,11 @@ 55.4 SHORT_DESC="Compressor with a high compression speed." 55.5 MAINTAINER="pascal.bellard@slitaz.org" 55.6 LICENSE="GPL2" 55.7 +WEB_SITE="http://www.lzop.org/" 55.8 +HOST_ARCH="i486 arm" 55.9 + 55.10 TARBALL="$PACKAGE-$VERSION.tar.gz" 55.11 -WEB_SITE="http://www.lzop.org/" 55.12 WGET_URL="${WEB_SITE}download/$TARBALL" 55.13 -HOST_ARCH="i486 arm" 55.14 55.15 DEPENDS="lzo" 55.16 BUILD_DEPENDS="lzo-dev" 55.17 @@ -17,15 +18,13 @@ 55.18 # Rules to configure and make the package. 55.19 compile_rules() 55.20 { 55.21 - ./configure \ 55.22 - $CONFIGURE_ARGS && 55.23 - make 55.24 + patch -p1 -i $stuff/lzop-gcc6.patch 55.25 + 55.26 + ./configure $CONFIGURE_ARGS && make && make install 55.27 } 55.28 55.29 # Rules to gen a SliTaz package suitable for Tazpkg. 55.30 genpkg_rules() 55.31 { 55.32 - mkdir -p $fs/usr/bin 55.33 - cp $src/src/lzop $fs/usr/bin 55.34 + cook_copy_files lzop 55.35 } 55.36 -
56.1 --- a/nasm/description.txt Mon Jan 30 23:51:27 2017 +0200 56.2 +++ b/nasm/description.txt Fri Feb 03 12:13:00 2017 +0200 56.3 @@ -1,3 +1,3 @@ 56.4 -The Netwide Assembler (NASM) is an assembler and disassembler for the Intel x86 56.5 +The Netwide Assembler (NASM) is an assembler and disassembler for the Intel x86 56.6 architecture. It can be used to write 16-bit, 32-bit (IA-32) and 64-bit (x86-64) 56.7 programs. NASM is considered to be one of the most popular assemblers for Linux.
57.1 --- a/nasm/receipt Mon Jan 30 23:51:27 2017 +0200 57.2 +++ b/nasm/receipt Fri Feb 03 12:13:00 2017 +0200 57.3 @@ -1,21 +1,21 @@ 57.4 # SliTaz package receipt. 57.5 57.6 PACKAGE="nasm" 57.7 -VERSION="2.11.02" 57.8 +VERSION="2.12.02" 57.9 CATEGORY="development" 57.10 SHORT_DESC="The netwide assembler." 57.11 MAINTAINER="pascal.bellard@slitaz.org" 57.12 LICENSE="BSD" 57.13 -TARBALL="$PACKAGE-$VERSION.tar.xz" 57.14 WEB_SITE="http://www.nasm.us/" 57.15 -WGET_URL="${WEB_SITE}pub/$PACKAGE/releasebuilds/$VERSION/$TARBALL" 57.16 TAGS="assembler" 57.17 HOST_ARCH="i486 arm" 57.18 57.19 +TARBALL="$PACKAGE-$VERSION.tar.xz" 57.20 +WGET_URL="${WEB_SITE}pub/nasm/releasebuilds/$VERSION/$TARBALL" 57.21 + 57.22 # Rules to configure and make the package. 57.23 compile_rules() 57.24 { 57.25 - cd $src 57.26 ./configure $CONFIGURE_ARGS && 57.27 make && 57.28 make INSTALLROOT=$DESTDIR install 57.29 @@ -24,7 +24,5 @@ 57.30 # Rules to gen a SliTaz package suitable for Tazpkg. 57.31 genpkg_rules() 57.32 { 57.33 - mkdir -p $fs/usr 57.34 - cp -a $install/usr/bin $fs/usr 57.35 + cook_copy_folders bin 57.36 } 57.37 -
58.1 --- a/nettle-dev/receipt Mon Jan 30 23:51:27 2017 +0200 58.2 +++ b/nettle-dev/receipt Fri Feb 03 12:13:00 2017 +0200 58.3 @@ -1,7 +1,7 @@ 58.4 # SliTaz package receipt. 58.5 58.6 PACKAGE="nettle-dev" 58.7 -VERSION="3.1.1" 58.8 +VERSION="3.3" 58.9 CATEGORY="development" 58.10 SHORT_DESC="devel files for nettle" 58.11 MAINTAINER="devl547@gmail.com" 58.12 @@ -10,13 +10,10 @@ 58.13 HOST_ARCH="i486 arm" 58.14 58.15 WANTED="nettle" 58.16 -DEPENDS="nettle" 58.17 +DEPENDS="nettle gmp-dev" 58.18 58.19 # Rules to gen a SliTaz package suitable for Tazpkg. 58.20 genpkg_rules() 58.21 { 58.22 - mkdir -p $fs/usr/lib 58.23 - cp -a $install/usr/include $fs/usr 58.24 - cp -a $install/usr/lib/*a $fs/usr/lib 58.25 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 58.26 + cook_copy_files *.h *.pc 58.27 }
59.1 --- a/nettle/receipt Mon Jan 30 23:51:27 2017 +0200 59.2 +++ b/nettle/receipt Fri Feb 03 12:13:00 2017 +0200 59.3 @@ -1,22 +1,23 @@ 59.4 # SliTaz package receipt. 59.5 59.6 PACKAGE="nettle" 59.7 -VERSION="3.1.1" 59.8 +VERSION="3.3" 59.9 CATEGORY="security" 59.10 SHORT_DESC="Nettle is a cryptographic library that is designed to fit easily in more or less any context." 59.11 MAINTAINER="devl547@gmail.com" 59.12 LICENSE="LGPL2.1" 59.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 59.14 WEB_SITE="http://www.lysator.liu.se/~nisse/nettle/" 59.15 -WGET_URL="http://www.lysator.liu.se/~nisse/archive/$TARBALL" 59.16 HOST_ARCH="i486 arm" 59.17 59.18 +TARBALL="$PACKAGE-$VERSION.tar.gz" 59.19 +WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 59.20 + 59.21 DEPENDS="gmp" 59.22 -BUILD_DEPENDS="gmp-dev" 59.23 - 59.24 +BUILD_DEPENDS="openssl-dev gmp-dev texinfo" 59.25 + 59.26 # Handle cross compilation. 59.27 case "$ARCH" in 59.28 - arm) 59.29 + arm) 59.30 ARCH_ARGS="--enable-arm-neon" ;; 59.31 esac 59.32 59.33 @@ -24,16 +25,14 @@ 59.34 compile_rules() 59.35 { 59.36 ./configure \ 59.37 - --libdir=/usr/lib \ 59.38 - --enable-shared \ 59.39 - $CONFIGURE_ARGS ${ARCH_ARGS} && 59.40 + --disable-static \ 59.41 + $CONFIGURE_ARGS ${ARCH_ARGS} && 59.42 make && make install 59.43 } 59.44 59.45 # Rules to gen a SliTaz package suitable for Tazpkg. 59.46 genpkg_rules() 59.47 { 59.48 - mkdir -p $fs/usr/lib 59.49 - cp -a $install/usr/bin $fs/usr 59.50 - cp -a $install/usr/lib/*.so* $fs/usr/lib 59.51 + cook_copy_folders bin 59.52 + cook_copy_files *.so* 59.53 }
60.1 --- a/optipng/receipt Mon Jan 30 23:51:27 2017 +0200 60.2 +++ b/optipng/receipt Fri Feb 03 12:13:00 2017 +0200 60.3 @@ -1,15 +1,16 @@ 60.4 # SliTaz package receipt. 60.5 60.6 PACKAGE="optipng" 60.7 -VERSION="0.7.5" 60.8 +VERSION="0.7.6" 60.9 CATEGORY="utilities" 60.10 SHORT_DESC="A command line tool to compress and optimize PNG images." 60.11 MAINTAINER="pankso@slitaz.org" 60.12 LICENSE="zlib/libpng" 60.13 WEB_SITE="http://optipng.sourceforge.net/" 60.14 +TAGS="image compression" 60.15 + 60.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 60.17 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" 60.18 -TAGS="image compression" 60.19 60.20 DEPENDS="libpng+apng" 60.21 BUILD_DEPENDS="libpng+apng-dev zlib-dev" 60.22 @@ -18,20 +19,16 @@ 60.23 compile_rules() 60.24 { 60.25 sed -i 's|prefix)/man|prefix)/share/man|' configure 60.26 + 60.27 ./configure \ 60.28 -prefix=/usr \ 60.29 -with-system-libpng && 60.30 make && 60.31 - make test && 60.32 make install 60.33 } 60.34 60.35 # Rules to gen a SliTaz package suitable for Tazpkg. 60.36 genpkg_rules() 60.37 { 60.38 - mkdir -p \ 60.39 - $fs/usr/bin \ 60.40 - $fs/usr/share/licenses 60.41 - cp -a $src/LICENSE.txt $fs/usr/share/licenses/$PACKAGE.txt 60.42 - cp -a $install/usr/bin $fs/usr 60.43 + cook_copy_files optipng 60.44 }
61.1 --- a/pngquant/receipt Mon Jan 30 23:51:27 2017 +0200 61.2 +++ b/pngquant/receipt Fri Feb 03 12:13:00 2017 +0200 61.3 @@ -1,31 +1,38 @@ 61.4 # SliTaz package receipt. 61.5 61.6 PACKAGE="pngquant" 61.7 -VERSION="2.7.0" 61.8 +VERSION="2.8.2" 61.9 CATEGORY="graphics" 61.10 SHORT_DESC="Command-line utility and a library for lossy compression of PNG images" 61.11 MAINTAINER="al.bobylev@gmail.com" 61.12 LICENSE="GPL3" 61.13 WEB_SITE="https://pngquant.org/" 61.14 + 61.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 61.16 -WGET_URL="https://github.com/pornel/pngquant/archive/$VERSION.tar.gz" 61.17 +WGET_URL="$GITHUB/pornel/pngquant/tarball/$VERSION" 61.18 61.19 -DEPENDS="lcms2 libpng" 61.20 -BUILD_DEPENDS="lcms2-dev libpng-dev" 61.21 +EXTRA_TARBALL="libimagequant-$VERSION" 61.22 +EXTRA_WGET_URL="$GITHUB/ImageOptim/libimagequant/tarball/$VERSION" 61.23 + 61.24 +DEPENDS="lcms2 libpng zlib" 61.25 +BUILD_DEPENDS="lcms2-dev libpng-dev zlib-dev" 61.26 61.27 # Rules to configure and make the package. 61.28 compile_rules() 61.29 { 61.30 + if [ ! -e "$SRC/$EXTRA_TARBALL" ]; then 61.31 + wget -O $SRC/$EXTRA_TARBALL $EXTRA_WGET_URL 61.32 + fi 61.33 + tar -xf $SRC/$EXTRA_TARBALL -C $src 61.34 + mv $src/ImageOptim-*/* $src/lib/ 61.35 + 61.36 ./configure \ 61.37 - --prefix=/usr \ 61.38 - $CONFIGURE_ARGS && 61.39 + --prefix=/usr && 61.40 make && make install 61.41 - 61.42 - find $install -name pngquant.1 -exec gzip -9 \{\} \; 61.43 } 61.44 61.45 # Rules to gen a SliTaz package suitable for Tazpkg. 61.46 genpkg_rules() 61.47 { 61.48 - cp -a $install/* $fs 61.49 + cook_copy_files pngquant 61.50 }
62.1 --- a/sqlite-dev/receipt Mon Jan 30 23:51:27 2017 +0200 62.2 +++ b/sqlite-dev/receipt Fri Feb 03 12:13:00 2017 +0200 62.3 @@ -1,23 +1,19 @@ 62.4 # SliTaz package receipt. 62.5 62.6 PACKAGE="sqlite-dev" 62.7 -_realver=3081101 62.8 -VERSION="${_realver:0:1}.${_realver:2:1}.${_realver:3:2}.${_realver:6:6}" 62.9 +VERSION="3.16.1" 62.10 CATEGORY="development" 62.11 SHORT_DESC="Small SQL database engine devel files." 62.12 MAINTAINER="pankso@slitaz.org" 62.13 LICENSE="PublicDomain" 62.14 -WANTED="sqlite" 62.15 -WEB_SITE="http://www.sqlite.org/" 62.16 +WEB_SITE="https://www.sqlite.org/" 62.17 HOST_ARCH="i486 arm" 62.18 62.19 +WANTED="sqlite" 62.20 DEPENDS="sqlite" 62.21 62.22 # Rules to gen a SliTaz package suitable for Tazpkg. 62.23 genpkg_rules() 62.24 { 62.25 - mkdir -p $fs/usr/lib 62.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 62.27 - cp -a $install/usr/lib/pkgconfig $fs/usr/lib 62.28 - cp -a $install/usr/include $fs/usr 62.29 + cook_copy_files *.h *.a *.la *.pc 62.30 }
63.1 --- a/sqlite/receipt Mon Jan 30 23:51:27 2017 +0200 63.2 +++ b/sqlite/receipt Fri Feb 03 12:13:00 2017 +0200 63.3 @@ -11,12 +11,13 @@ 63.4 HOST_ARCH="i486 arm" 63.5 63.6 TARBALL="$PACKAGE-$VERSION.zip" 63.7 -WGET_URL="http://www.sqlite.org/2017/sqlite-src-$version.zip" 63.8 +WGET_URL="https://www.sqlite.org/2017/sqlite-src-$version.zip" 63.9 63.10 EXTRA_SOURCE_FILES="mysql2sqlite.sh" 63.11 63.12 DEPENDS="libsqlite" 63.13 BUILD_DEPENDS="tcl-dev" 63.14 +SPLIT="libsqlite libsqlite-tcl lemon" 63.15 63.16 # Rules to configure and make the package. 63.17 compile_rules() 63.18 @@ -29,17 +30,19 @@ 63.19 wget -O "$SOURCES_REPOSITORY/mysql2sqlite.sh" \ 63.20 https://gist.github.com/esperlu/943776/raw/dd87f4088f6d5ec7563478f7a28a37ba02cf26e2/mysql2sqlite.sh 63.21 63.22 - export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY -DSQLITE_SECURE_DELETE" 63.23 + export CFLAGS="$CFLAGS -DSQLITE_ENABLE_FTS3=1 \ 63.24 + -DSQLITE_ENABLE_COLUMN_METADATA=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1 \ 63.25 + -DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_DBSTAT_VTAB=1" 63.26 63.27 ./configure \ 63.28 - --prefix=/usr \ 63.29 + --disable-static \ 63.30 --disable-readline \ 63.31 --enable-load-extension \ 63.32 LDFLAGS="$LDFLAGS -ldl" \ 63.33 $ARCH_ARGS \ 63.34 $CONFIGURE_ARGS && 63.35 sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool && 63.36 - sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool && 63.37 + sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool && 63.38 make && 63.39 make DESTDIR=$DESTDIR install 63.40 63.41 @@ -59,13 +62,8 @@ 63.42 # Rules to gen a SliTaz package suitable for Tazpkg. 63.43 genpkg_rules() 63.44 { 63.45 - mkdir -p $fs/usr/bin 63.46 + cook_copy_files sqlite3 63.47 63.48 - cp -a $install/usr/bin $fs/usr 63.49 cp "$SOURCES_REPOSITORY/mysql2sqlite.sh" $fs/usr/bin 63.50 chmod +x $fs/usr/bin/mysql2sqlite.sh 63.51 - 63.52 - if [ -f $fs/usr/bin/lemon ]; then 63.53 - rm -f $fs/usr/bin/lemon 63.54 - fi 63.55 }
64.1 --- a/tiff-apps/receipt Mon Jan 30 23:51:27 2017 +0200 64.2 +++ b/tiff-apps/receipt Fri Feb 03 12:13:00 2017 +0200 64.3 @@ -1,20 +1,19 @@ 64.4 # SliTaz package receipt. 64.5 64.6 PACKAGE="tiff-apps" 64.7 -VERSION="4.0.3" 64.8 +VERSION="4.0.6" 64.9 CATEGORY="x-window" 64.10 SHORT_DESC="TIFF images manipulation cli applications. (Check tiff for libs)." 64.11 MAINTAINER="pankso@slitaz.org" 64.12 LICENSE="MIT" 64.13 -WANTED="tiff" 64.14 -WEB_SITE="http://www.remotesensing.org/libtiff/" 64.15 +WEB_SITE="http://www.libtiff.org/" 64.16 HOST_ARCH="i486 arm" 64.17 64.18 -DEPENDS="jpeg zlib tiff" 64.19 +WANTED="tiff" 64.20 +DEPENDS="libjpeg-turbo zlib tiff" 64.21 64.22 # Rules to gen a SliTaz package suitable for Tazpkg. 64.23 genpkg_rules() 64.24 { 64.25 - mkdir -p $fs/usr 64.26 - cp -a $install/usr/bin $fs/usr 64.27 + cook_copy_folders bin 64.28 }
65.1 --- a/tiff-dev/receipt Mon Jan 30 23:51:27 2017 +0200 65.2 +++ b/tiff-dev/receipt Fri Feb 03 12:13:00 2017 +0200 65.3 @@ -1,21 +1,19 @@ 65.4 # SliTaz package receipt. 65.5 65.6 PACKAGE="tiff-dev" 65.7 -VERSION="4.0.3" 65.8 +VERSION="4.0.6" 65.9 CATEGORY="development" 65.10 SHORT_DESC="TIFF images libs devel files" 65.11 MAINTAINER="pankso@slitaz.org" 65.12 LICENSE="MIT" 65.13 -WANTED="tiff" 65.14 -WEB_SITE="http://www.remotesensing.org/libtiff/" 65.15 +WEB_SITE="http://www.libtiff.org/" 65.16 HOST_ARCH="i486 arm" 65.17 65.18 -DEPENDS="tiff jbigkit" 65.19 +WANTED="tiff" 65.20 +DEPENDS="tiff libjpeg-turbo-dev zlib-dev" 65.21 65.22 # Rules to gen a SliTaz package suitable for Tazpkg. 65.23 genpkg_rules() 65.24 { 65.25 - mkdir -p $fs/usr/lib 65.26 - cp -a $install/usr/lib/*.*a $fs/usr/lib 65.27 - cp -a $install/usr/include $fs/usr 65.28 + cook_copy_files *.h *.la *.pc *.hxx 65.29 }
66.1 --- a/tiff/receipt Mon Jan 30 23:51:27 2017 +0200 66.2 +++ b/tiff/receipt Fri Feb 03 12:13:00 2017 +0200 66.3 @@ -1,29 +1,32 @@ 66.4 # SliTaz package receipt. 66.5 66.6 PACKAGE="tiff" 66.7 -VERSION="4.0.3" 66.8 +VERSION="4.0.6" 66.9 CATEGORY="x-window" 66.10 SHORT_DESC="TIFF images libs. (Check tiff-apps for utilities)." 66.11 MAINTAINER="pankso@slitaz.org" 66.12 LICENSE="MIT" 66.13 -TARBALL="$PACKAGE-$VERSION.tar.gz" 66.14 -WEB_SITE="http://www.remotesensing.org/libtiff/" 66.15 -WGET_URL="ftp://ftp.remotesensing.org/pub/libtiff/$TARBALL" 66.16 +WEB_SITE="http://www.libtiff.org/" 66.17 HOST_ARCH="i486 arm" 66.18 66.19 -DEPENDS="jpeg zlib gcc-lib-base" 66.20 -BUILD_DEPENDS="jpeg-dev zlib-dev" 66.21 +TARBALL="$PACKAGE-$VERSION.tar.gz" 66.22 +WGET_URL="http://download.osgeo.org/libtiff/$TARBALL" 66.23 + 66.24 +DEPENDS="jpeg-turbo zlib" 66.25 +BUILD_DEPENDS="cmake libjpeg-turbo-dev zlib-dev" 66.26 +SPLIT="tiff-apps" 66.27 66.28 # Rules to configure and make the package. 66.29 compile_rules() 66.30 { 66.31 - ./configure $CONFIGURE_ARGS && 66.32 + ./configure \ 66.33 + --disable-static \ 66.34 + $CONFIGURE_ARGS && 66.35 make && make install 66.36 } 66.37 66.38 # Rules to gen a SliTaz package suitable for Tazpkg. 66.39 genpkg_rules() 66.40 { 66.41 - mkdir -p $fs/usr/lib 66.42 - cp -a $install/usr/lib/*.so* $fs/usr/lib 66.43 + cook_copy_files *.so* 66.44 }