wok view gperf/receipt @ rev 15835

Up: dnsmasq to 2.68.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Jan 24 23:47:23 2014 +0000 (2014-01-24)
parents beafc9e0975e
children 6d8a4be89f3d
line source
1 # SliTaz package receipt.
3 PACKAGE="gperf"
4 VERSION="3.0.4"
5 CATEGORY="development"
6 SHORT_DESC="GNU gperf is a perfect hash function generator."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.gnu.org/software/gperf/"
11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --mandir=/usr/share/man \
20 $CONFIGURE_ARGS
21 make
22 make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr
29 cp -a $install/usr/bin $fs/usr
30 }