wok view gtkperf/receipt @ rev 21549

Add LXSession 0.4.6.* as lxsession046 (latest LXSession 0.4.* is 0.4.9.* and it don't compile anyway due to the old libgee; and latest LXSession 0.5.* (just lxsession) has the major drawbacks)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue May 07 11:25:44 2019 +0300 (2019-05-07)
parents 762b649a4d73
children 932cd974e081
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 sed -i 's|/doc|/share&|' Makefile*
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/share
29 cp -a $install/usr/bin $fs/usr
30 cp -a $install/usr/share/pixmaps $fs/usr/share
31 }