wok view rzip/receipt @ rev 21314

5) lxpanel: up (0.10.0)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu Apr 18 17:46:06 2019 +0300 (2019-04-18)
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 }