wok view lrzip/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents 60202e4e10cc
children
line source
1 # SliTaz package receipt.
3 PACKAGE="lrzip"
4 VERSION="0.651"
5 CATEGORY="utilities"
6 TAGS="compression archive"
7 SHORT_DESC="Lrzip is a file compression program designed to do particularly well on very large files containing long distance redundancy."
8 MAINTAINER="maintainer@slitaz.org"
9 LICENSE="GPL2"
10 WEB_SITE="http://ck.kolivas.org/apps/lrzip/"
12 TARBALL="$PACKAGE-$VERSION.tar.xz"
13 WGET_URL="$WEB_SITE/$TARBALL"
15 DEPENDS="bash bzlib lz4 lzo zlib"
16 BUILD_DEPENDS="bzip2-dev lz4-dev lzo-dev nasm perl zlib-dev"
18 current_version()
19 {
20 wget -O - $WEB_SITE 2>/dev/null | \
21 sed '/tar/!d;s|.*lrzip-\(.*\).tar.*".*|\1|' | sed '$!d'
22 }
24 # Rules to configure and make the package.
25 compile_rules()
26 {
27 ./configure $CONFIGURE_ARGS &&
28 make &&
29 make install DESTDIR=$DESTDIR
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 cook_copy_folders bin
36 }