wok-current rev 24874
updated lzip and lziprecover (1.21 -> 1.23)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Mar 31 08:05:33 2022 +0100 (2022-03-31) |
parents | dec12284b033 |
children | 278e569f7820 |
files | lzip/description.txt lzip/receipt lziprecover/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/lzip/description.txt Thu Mar 31 08:05:33 2022 +0100 1.3 @@ -0,0 +1,11 @@ 1.4 +Lzip is a lossless data compressor with a user interface similar 1.5 +to the one of gzip or bzip2. 1.6 +Lzip uses a simplified form of the 'Lempel-Ziv-Markov chain-Algorithm' 1.7 +(LZMA) stream format, chosen to maximize safety and interoperability. 1.8 +Lzip can compress about as fast as gzip (lzip -0) or compress most 1.9 +files more than bzip2 (lzip -9). 1.10 +Decompression speed is intermediate between gzip and bzip2. 1.11 +Lzip is better than gzip and bzip2 from a data recovery perspective. 1.12 +Lzip has been designed, written, and tested with great care to replace 1.13 +gzip and bzip2 as the standard general-purpose compressed format 1.14 +for unix-like systems.
2.1 --- a/lzip/receipt Thu Mar 31 07:46:22 2022 +0100 2.2 +++ b/lzip/receipt Thu Mar 31 08:05:33 2022 +0100 2.3 @@ -1,18 +1,20 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="lzip" 2.7 -VERSION="1.21" 2.8 +VERSION="1.23" 2.9 CATEGORY="utilities" 2.10 -SHORT_DESC="LZMA compressor" 2.11 +SHORT_DESC="LZMA compressor." 2.12 MAINTAINER="mimas@slitaz.org" 2.13 LICENSE="GPL2" 2.14 +WEB_SITE="https://www.nongnu.org/lzip/lzip.html" 2.15 + 2.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 2.17 -WEB_SITE="http://www.nongnu.org/lzip/lzip.html" 2.18 -WGET_URL="http://download.savannah.gnu.org/releases/lzip/$TARBALL" 2.19 -HOST_ARCH="i486 arm" 2.20 +WGET_URL="https://download.savannah.gnu.org/releases/lzip/$TARBALL" 2.21 2.22 DEPENDS="gcc-lib-base" 2.23 2.24 +HOST_ARCH="i486 arm" 2.25 + 2.26 current_version() 2.27 { 2.28 wget -O - $(dirname $WGET_URL) 2>/dev/null | \ 2.29 @@ -24,17 +26,16 @@ 2.30 { 2.31 mkdir -p $DESTDIR/usr/share/doc 2.32 cp README $DESTDIR/usr/share/doc 2.33 - ./configure --prefix=/usr $CONFIGURE_ARGS && 2.34 + 2.35 + ./configure \ 2.36 + --prefix=/usr \ 2.37 + $CONFIGURE_ARGS && 2.38 make && 2.39 - make DESTDIR=$DESTDIR install 2.40 + make install DESTDIR=$DESTDIR 2.41 } 2.42 2.43 # Rules to gen a SliTaz package suitable for Tazpkg. 2.44 genpkg_rules() 2.45 { 2.46 - mkdir -p $fs/usr 2.47 - cp -a $install/usr/bin $fs/usr 2.48 -# cp $src/lzdiff $fs/usr/bin 2.49 -# cp $src/lzgrep $fs/usr/bin 2.50 + cook_copy_folders bin 2.51 } 2.52 -
3.1 --- a/lziprecover/receipt Thu Mar 31 07:46:22 2022 +0100 3.2 +++ b/lziprecover/receipt Thu Mar 31 08:05:33 2022 +0100 3.3 @@ -1,7 +1,7 @@ 3.4 # SliTaz package receipt. 3.5 3.6 PACKAGE="lziprecover" 3.7 -VERSION="1.22" 3.8 +VERSION="1.23" 3.9 CATEGORY="utilities" 3.10 SHORT_DESC="LZIP files recovery tool." 3.11 MAINTAINER="pascal.bellard@slitaz.org" 3.12 @@ -9,7 +9,7 @@ 3.13 WEB_SITE="https://www.nongnu.org/lzip/lziprecover.html" 3.14 3.15 TARBALL="$PACKAGE-$VERSION.tar.gz" 3.16 -WGET_URL="http://download.savannah.gnu.org/releases/lzip/lziprecover/$TARBALL" 3.17 +WGET_URL="https://download.savannah.gnu.org/releases/lzip/lziprecover/$TARBALL" 3.18 3.19 DEPENDS="gcc-lib-base" 3.20 3.21 @@ -30,13 +30,12 @@ 3.22 ./configure \ 3.23 --prefix=/usr \ 3.24 $CONFIGURE_ARGS && 3.25 - make -j 1 && 3.26 - make DESTDIR=$DESTDIR install 3.27 + make && 3.28 + make install DESTDIR=$DESTDIR 3.29 } 3.30 3.31 # Rules to gen a SliTaz package suitable for Tazpkg. 3.32 genpkg_rules() 3.33 { 3.34 - mkdir -p $fs/usr 3.35 - cp -a $install/usr/bin $fs/usr 3.36 + cook_copy_folders bin 3.37 }