wok view gtkperf/receipt @ rev 17987

slitaz-base-files: up (267), fix HTTP POST form bug.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Apr 22 11:58:12 2015 +0300 (2015-04-22)
parents d1c17bd2c2bc
children 762b649a4d73
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkperf"
4 VERSION="0.40"
5 CATEGORY="utilities"
6 SHORT_DESC="Application designed to test GTK+ performance."
7 MAINTAINER="devl547@gmail.com"
8 LICENSE="GPL2"
9 TARBALL="gtkperf_0.40.tar.gz"
10 WEB_SITE="http://gtkperf.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev gettext autoconf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath &&
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 cp -a $install/usr/share $fs/usr
31 }