wok annotate gperf/receipt @ rev 21699

updated potamus (15 -> 17)
author Hans-G?nter Theisgen
date Wed Jun 05 17:53:51 2019 +0100 (2019-06-05)
parents 6d8a4be89f3d
children 71360a13cd94
rev   line source
pankso@874 1 # SliTaz package receipt.
pankso@874 2
pankso@874 3 PACKAGE="gperf"
Hans-G?nter@20990 4 VERSION="3.1"
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"
Hans-G?nter@20990 9 WEB_SITE="https://www.gnu.org/software/gperf/"
Hans-G?nter@20990 10
pankso@874 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@874 12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
Hans-G?nter@20990 13
pankso@16083 14 HOST_ARCH="i486 arm"
pankso@874 15
pankso@874 16 # Rules to configure and make the package.
pankso@874 17 compile_rules()
pankso@874 18 {
pankso@16083 19 ./configure $CONFIGURE_ARGS
Hans-G?nter@20990 20 make -j 1 &&
Hans-G?nter@20990 21 make install
pankso@874 22 }
pankso@874 23
pankso@874 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@874 25 genpkg_rules()
pankso@874 26 {
pankso@874 27 mkdir -p $fs/usr
pascal@15589 28 cp -a $install/usr/bin $fs/usr
pankso@874 29 }