wok view gtkperf/receipt @ rev 19109

Up paper-icon-theme
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri May 06 14:29:12 2016 +0300 (2016-05-06)
parents 600aaedb561d
children f6af821600e6
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="${PACKAGE}_${VERSION}.tar.gz"
10 WEB_SITE="http://gtkperf.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gtk+-dev gettext autoconf"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath &&
20 make &&
21 make DESTDIR=$DESTDIR 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 cp -a $install/usr/share $fs/usr
30 }