# HG changeset patch # User Hans-G?nter Theisgen # Date 1648710333 -3600 # Node ID 1c75fb23b95464ba4d560ca6e090bd3d3ebac620 # Parent dec12284b0332b09b25a259ea1053ac2f9ac6e45 updated lzip and lziprecover (1.21 -> 1.23) diff -r dec12284b033 -r 1c75fb23b954 lzip/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lzip/description.txt Thu Mar 31 08:05:33 2022 +0100 @@ -0,0 +1,11 @@ +Lzip is a lossless data compressor with a user interface similar +to the one of gzip or bzip2. +Lzip uses a simplified form of the 'Lempel-Ziv-Markov chain-Algorithm' +(LZMA) stream format, chosen to maximize safety and interoperability. +Lzip can compress about as fast as gzip (lzip -0) or compress most +files more than bzip2 (lzip -9). +Decompression speed is intermediate between gzip and bzip2. +Lzip is better than gzip and bzip2 from a data recovery perspective. +Lzip has been designed, written, and tested with great care to replace +gzip and bzip2 as the standard general-purpose compressed format +for unix-like systems. diff -r dec12284b033 -r 1c75fb23b954 lzip/receipt --- a/lzip/receipt Thu Mar 31 07:46:22 2022 +0100 +++ b/lzip/receipt Thu Mar 31 08:05:33 2022 +0100 @@ -1,18 +1,20 @@ # SliTaz package receipt. PACKAGE="lzip" -VERSION="1.21" +VERSION="1.23" CATEGORY="utilities" -SHORT_DESC="LZMA compressor" +SHORT_DESC="LZMA compressor." MAINTAINER="mimas@slitaz.org" LICENSE="GPL2" +WEB_SITE="https://www.nongnu.org/lzip/lzip.html" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.nongnu.org/lzip/lzip.html" -WGET_URL="http://download.savannah.gnu.org/releases/lzip/$TARBALL" -HOST_ARCH="i486 arm" +WGET_URL="https://download.savannah.gnu.org/releases/lzip/$TARBALL" DEPENDS="gcc-lib-base" +HOST_ARCH="i486 arm" + current_version() { wget -O - $(dirname $WGET_URL) 2>/dev/null | \ @@ -24,17 +26,16 @@ { mkdir -p $DESTDIR/usr/share/doc cp README $DESTDIR/usr/share/doc - ./configure --prefix=/usr $CONFIGURE_ARGS && + + ./configure \ + --prefix=/usr \ + $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr -# cp $src/lzdiff $fs/usr/bin -# cp $src/lzgrep $fs/usr/bin + cook_copy_folders bin } - diff -r dec12284b033 -r 1c75fb23b954 lziprecover/receipt --- a/lziprecover/receipt Thu Mar 31 07:46:22 2022 +0100 +++ b/lziprecover/receipt Thu Mar 31 08:05:33 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="lziprecover" -VERSION="1.22" +VERSION="1.23" CATEGORY="utilities" SHORT_DESC="LZIP files recovery tool." MAINTAINER="pascal.bellard@slitaz.org" @@ -9,7 +9,7 @@ WEB_SITE="https://www.nongnu.org/lzip/lziprecover.html" TARBALL="$PACKAGE-$VERSION.tar.gz" -WGET_URL="http://download.savannah.gnu.org/releases/lzip/lziprecover/$TARBALL" +WGET_URL="https://download.savannah.gnu.org/releases/lzip/lziprecover/$TARBALL" DEPENDS="gcc-lib-base" @@ -30,13 +30,12 @@ ./configure \ --prefix=/usr \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }