# HG changeset patch # User Hans-G?nter Theisgen # Date 1648572428 -3600 # Node ID 8b7f75d0e08e74e26a8edf1a5590c3bd11d93ac4 # Parent e8372db7c74f44bf9ea6935945ffefad4864c5ba updated lrzip (0.631 -> 0.651) diff -r e8372db7c74f -r 8b7f75d0e08e lrzip/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lrzip/description.txt Tue Mar 29 17:47:08 2022 +0100 @@ -0,0 +1,6 @@ +A compression utility that excels at compressing large files (usually > 10-50 MB). +Larger files or more free RAM means that the utility will be able to more +effectively compress your files (ie: faster and with smaller size), especially +if the filesize exceeds 100 MB. +You can either choose to optimise for speed (fast compression and decompression) +or size, but not both. diff -r e8372db7c74f -r 8b7f75d0e08e lrzip/receipt --- a/lrzip/receipt Tue Mar 29 17:26:39 2022 +0100 +++ b/lrzip/receipt Tue Mar 29 17:47:08 2022 +0100 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="lrzip" -VERSION="0.641" +VERSION="0.651" CATEGORY="utilities" -SHORT_DESC="lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy" -MAINTAINER="devel@slitaz.org" +TAGS="compression archive" +SHORT_DESC="Lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy." +MAINTAINER="maintainer@slitaz.org" LICENSE="GPL2" +WEB_SITE="http://ck.kolivas.org/apps/lrzip/" + TARBALL="$PACKAGE-$VERSION.tar.xz" -WEB_SITE="http://ck.kolivas.org/apps/lrzip/" WGET_URL="$WEB_SITE/$TARBALL" -TAGS="compression archive" -DEPENDS="lzo bzlib zlib gcc-lib-base lz4-lib" -BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm perl lz4-dev" +DEPENDS="bash bzlib lz4 lzo zlib" +BUILD_DEPENDS="bzip2-dev lz4-dev lzo-dev nasm perl zlib-dev" current_version() { @@ -23,14 +24,13 @@ # Rules to configure and make the package. compile_rules() { - ./configure $CONFIGURE_ARGS && - make && - make DESTDIR=$DESTDIR install + ./configure $CONFIGURE_ARGS && + 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 }