wok view gtkperf/receipt @ rev 8053

Up: cherokee to 1.0.18.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Jan 20 16:12:21 2011 +0000 (2011-01-20)
parents
children 03933a919f81
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 gtkperf
18 ./configure --prefix=/usr --infodir=/usr/share/info \
19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/
28 cp -a gtkperf/_pkg/usr/bin $fs/usr
29 cp -a gtkperf/_pkg/usr/share $fs/usr
30 }