wok-undigest view gzip/receipt @ rev 226

Improve libbonobo* receipt
author Christophe Lincoln <pankso@slitaz.org>
date Fri Mar 18 11:24:32 2011 +0100 (2011-03-18)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gzip"
4 VERSION="1.4"
5 CATEGORY="system-tools"
6 SHORT_DESC="Data compression program"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS=""
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/gzip/"
11 WGET_URL="http://ftp.gnu.org/gnu/gzip/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$PWD/_pkg install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/bin
29 cp -a $_pkg/usr/bin/gzip $fs/usr/bin
30 cp -a $_pkg/usr/bin/gunzip $fs/usr/bin
31 }