wok view rzip/receipt @ rev 20701

updated airgeddon (3.31 -> 8.12)
author Hans-G?nter Theisgen
date Tue Feb 05 17:16:21 2019 +0100 (2019-02-05)
parents 4c8097897bd1
children f8a963794d31
line source
1 # SliTaz package receipt.
3 PACKAGE="rzip"
4 VERSION="2.1"
5 CATEGORY="utilities"
6 SHORT_DESC="A compression program designed for long distance redundencies"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://rzip.samba.org/"
11 WGET_URL="${WEB_SITE}ftp/$PACKAGE/$TARBALL"
12 TAGS="compression archive"
14 DEPENDS="bzlib"
15 BUILD_DEPENDS="wget bzip2-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 --sysconfdir=/etc \
22 $CONFIGURE_ARGS &&
23 make
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/bin
30 cp -a $src/rzip $fs/usr/bin
31 }