wok annotate rgzip/receipt @ rev 22154
updated xcb-proto (1.10 -> 1.13)
author | Hans-G?nter Theisgen |
---|---|
date | Thu Nov 07 07:30:39 2019 +0100 (2019-11-07) |
parents | fb0ec6e33ae9 |
children | b7f1bd1b9ac7 |
rev | line source |
---|---|
pascal@5206 | 1 # SliTaz package receipt. |
pascal@5206 | 2 |
pascal@5206 | 3 PACKAGE="rgzip" |
pascal@5206 | 4 VERSION="0" |
pascal@5206 | 5 CATEGORY="system-tools" |
pascal@5206 | 6 SHORT_DESC="Rsync friendly gzip." |
pascal@5206 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15611 | 8 LICENSE="GPL3" |
slaxemulator@9273 | 9 TARBALL="$PACKAGE.c" |
pascal@5206 | 10 WEB_SITE="http://svana.org/kleptog/rgzip.html" |
slaxemulator@9273 | 11 WGET_URL="http://svana.org/kleptog/$TARBALL" |
pascal@5206 | 12 DEPENDS="busybox" # gzip |
pascal@5206 | 13 TAGS="compression" |
pascal@5206 | 14 |
pascal@5206 | 15 # Rules to configure and make the package. |
pascal@5206 | 16 compile_rules() |
pascal@5206 | 17 { |
pascal@5206 | 18 cd $src |
pascal@5206 | 19 make rgzip |
pascal@5206 | 20 } |
pascal@5206 | 21 |
pascal@5206 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@5206 | 23 genpkg_rules() |
pascal@5206 | 24 { |
pascal@5206 | 25 mkdir -p $fs/usr/bin |
pascal@5206 | 26 cp $src/rgzip $fs/usr/bin |
pascal@5206 | 27 } |
pascal@5206 | 28 |