wok view gtkperf/receipt @ rev 21441

updated minicom (2.6 -> 2.7.1)
author Hans-G?nter Theisgen
date Mon Apr 29 14:32:23 2019 +0100 (2019-04-29)
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 }