wok rev 24862

updated lrzip (0.631 -> 0.651)
author Hans-G?nter Theisgen
date Tue Mar 29 17:47:08 2022 +0100 (2022-03-29)
parents e8372db7c74f
children 7fb34513be29
files lrzip/description.txt lrzip/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/lrzip/description.txt	Tue Mar 29 17:47:08 2022 +0100
     1.3 @@ -0,0 +1,6 @@
     1.4 +A compression utility that excels at compressing large files (usually > 10-50 MB).
     1.5 +Larger files or more free RAM means that the utility will be able to more
     1.6 +effectively compress your files (ie: faster and with smaller size), especially
     1.7 +if the filesize exceeds 100 MB.
     1.8 +You can either choose to optimise for speed (fast compression and decompression)
     1.9 +or size, but not both.
     2.1 --- a/lrzip/receipt	Tue Mar 29 17:26:39 2022 +0100
     2.2 +++ b/lrzip/receipt	Tue Mar 29 17:47:08 2022 +0100
     2.3 @@ -1,18 +1,19 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="lrzip"
     2.7 -VERSION="0.641"
     2.8 +VERSION="0.651"
     2.9  CATEGORY="utilities"
    2.10 -SHORT_DESC="lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy"
    2.11 -MAINTAINER="devel@slitaz.org"
    2.12 +TAGS="compression archive"
    2.13 +SHORT_DESC="Lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy."
    2.14 +MAINTAINER="maintainer@slitaz.org"
    2.15  LICENSE="GPL2"
    2.16 +WEB_SITE="http://ck.kolivas.org/apps/lrzip/"
    2.17 +
    2.18  TARBALL="$PACKAGE-$VERSION.tar.xz"
    2.19 -WEB_SITE="http://ck.kolivas.org/apps/lrzip/"
    2.20  WGET_URL="$WEB_SITE/$TARBALL"
    2.21 -TAGS="compression archive"
    2.22  
    2.23 -DEPENDS="lzo bzlib zlib gcc-lib-base lz4-lib"
    2.24 -BUILD_DEPENDS="lzo-dev bzip2-dev zlib-dev nasm perl lz4-dev"
    2.25 +DEPENDS="bash bzlib lz4 lzo zlib"
    2.26 +BUILD_DEPENDS="bzip2-dev lz4-dev lzo-dev nasm perl zlib-dev"
    2.27  
    2.28  current_version()
    2.29  {
    2.30 @@ -23,14 +24,13 @@
    2.31  # Rules to configure and make the package.
    2.32  compile_rules()
    2.33  {
    2.34 -    ./configure $CONFIGURE_ARGS &&
    2.35 -    make &&
    2.36 -    make DESTDIR=$DESTDIR install
    2.37 +	./configure $CONFIGURE_ARGS &&
    2.38 +	make &&
    2.39 +	make install DESTDIR=$DESTDIR
    2.40  }
    2.41  
    2.42  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.43  genpkg_rules()
    2.44  {
    2.45 -    mkdir -p $fs/usr
    2.46 -    cp -a $install/usr/bin $fs/usr
    2.47 +	cook_copy_folders	bin
    2.48  }