wok view rzip/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }