wok-next view rzip/receipt @ rev 21727

created recipe for vbindiff
author Hans-G?nter Theisgen
date Sat Nov 21 14:32:44 2020 +0100 (2020-11-21)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="https://rzip.samba.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}ftp/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="wget bzip2-dev"
16 compile_rules() {
17 ./configure $CONFIGURE_ARGS &&
18 make &&
19 install -Dm755 rzip $install/usr/bin/rzip
20 }
22 genpkg_rules() {
23 copy @std
24 DEPENDS="libbzip2"
25 TAGS="compression archive"
26 }