wok annotate gperf/receipt @ rev 17474
syslinux/iso2exe: use always mkfloppy in init
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Dec 27 18:25:05 2014 +0100 (2014-12-27) |
parents | d1c17bd2c2bc |
children | 43ec8702a7d1 |
rev | line source |
---|---|
pankso@874 | 1 # SliTaz package receipt. |
pankso@874 | 2 |
pankso@874 | 3 PACKAGE="gperf" |
slaxemulator@6300 | 4 VERSION="3.0.4" |
pascal@1423 | 5 CATEGORY="development" |
pankso@874 | 6 SHORT_DESC="GNU gperf is a perfect hash function generator." |
pankso@874 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15589 | 8 LICENSE="GPL3" |
pankso@874 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@874 | 10 WEB_SITE="http://www.gnu.org/software/gperf/" |
pankso@874 | 11 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" |
pankso@16083 | 12 HOST_ARCH="i486 arm" |
pankso@874 | 13 |
pankso@874 | 14 # Rules to configure and make the package. |
pankso@874 | 15 compile_rules() |
pankso@874 | 16 { |
pankso@16083 | 17 ./configure $CONFIGURE_ARGS |
pankso@16083 | 18 make && make install |
pankso@874 | 19 } |
pankso@874 | 20 |
pankso@874 | 21 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@874 | 22 genpkg_rules() |
pankso@874 | 23 { |
pankso@874 | 24 mkdir -p $fs/usr |
pascal@15589 | 25 cp -a $install/usr/bin $fs/usr |
pankso@874 | 26 } |
pankso@874 | 27 |