wok view gperf/receipt @ rev 22421

I see these >10 packages also got version updates due to xfce 4.12.0
author Erkan Yilmaz <erkan@slitaz.org>
date Sun Dec 15 09:13:38 2019 +0000 (2019-12-15)
parents 6d8a4be89f3d
children 71360a13cd94
line source
1 # SliTaz package receipt.
3 PACKAGE="gperf"
4 VERSION="3.1"
5 CATEGORY="development"
6 SHORT_DESC="GNU gperf is a perfect hash function generator."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="https://www.gnu.org/software/gperf/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS
20 make -j 1 &&
21 make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }