# HG changeset patch # User Hans-G?nter Theisgen # Date 1590125133 -3600 # Node ID 3a53397fd362d6da051091483e2638ae9995bd04 # Parent 3f3fd3b3d91f4cccae8b05db9bee0bac6de80c00 updated xz and xz-dev (5.2.4 -> 5.2.5) diff -r 3f3fd3b3d91f -r 3a53397fd362 xz-dev/receipt --- a/xz-dev/receipt Thu May 21 14:49:06 2020 +0100 +++ b/xz-dev/receipt Fri May 22 06:25:33 2020 +0100 @@ -1,23 +1,26 @@ # SliTaz package receipt. PACKAGE="xz-dev" -VERSION="5.2.4" +VERSION="5.2.5" CATEGORY="base-system" -SHORT_DESC="XZ and liblzma devel files" +SHORT_DESC="xz and liblzma development files." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="PublicDomain LGPL2.1 GPL2 GPL3" -WEB_SITE="http://tukaani.org/xz" +WEB_SITE="https://tukaani.org/xz" + PROVIDE="liblzma-dev" +DEPENDS="xz pkg-config" WANTED="xz" + HOST_ARCH="i486 arm x86_64" -DEPENDS="xz pkg-config" - # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/*.*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib + mkdir -p $fs/usr/bin + mkdir -p $fs/usr/lib + + cp -a $install/usr/include $fs/usr + cp -a $install/usr/lib/*.*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib } diff -r 3f3fd3b3d91f -r 3a53397fd362 xz/receipt --- a/xz/receipt Thu May 21 14:49:06 2020 +0100 +++ b/xz/receipt Fri May 22 06:25:33 2020 +0100 @@ -1,33 +1,36 @@ # SliTaz package receipt. PACKAGE="xz" -VERSION="5.2.4" +VERSION="5.2.5" CATEGORY="base-system" +TAGS="compression archive" SHORT_DESC="General-purpose data compressor with a high compression ratio." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="PublicDomain LGPL2.1 GPL2 GPL3" +WEB_SITE="https://tukaani.org/xz" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://tukaani.org/xz" WGET_URL="$WEB_SITE/$TARBALL" -TAGS="compression archive" -HOST_ARCH="i486 arm x86_64" DEPENDS="liblzma" BUILD_DEPENDS="" +HOST_ARCH="i486 arm x86_64" + # Rules to configure and make the package. compile_rules() { - ./configure \ - --enable-dynamic=yes \ - --enable-small \ + ./configure \ + --enable-dynamic=yes \ + --enable-small \ $CONFIGURE_ARGS && - make && make install + make && + make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/bin $fs/usr/lib - cp -a $install/usr/bin/xz $fs/usr/bin + mkdir -p $fs/usr/bin + cp -a $install/usr/bin/xz $fs/usr/bin }