wok view gtkperf/receipt @ rev 10573

libvalhalla: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 25 23:59:27 2011 +0200 (2011-05-25)
parents 1f1bcb1b4a7b
children 98ee899ec34b
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 TARBALL="gtkperf_0.40.tar.gz"
9 WEB_SITE="http://gtkperf.sourceforge.net/"
10 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$VERSION/$TARBALL"
11 BUILD_DEPENDS="gtk+-dev gettext"
12 DEPENDS="gtk+"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure &&
19 make &&
20 make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $_pkg/usr/bin $fs/usr
28 cp -a $_pkg/usr/share $fs/usr
29 }