wok annotate gtkperf/receipt @ rev 20244
remove linux64-btrfs
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sat Mar 10 18:17:37 2018 +0100 (2018-03-10) |
parents | 762b649a4d73 |
children | 932cd974e081 |
rev | line source |
---|---|
devl547@5222 | 1 # SliTaz package receipt. |
devl547@5222 | 2 |
devl547@5222 | 3 PACKAGE="gtkperf" |
devl547@5222 | 4 VERSION="0.40" |
devl547@5222 | 5 CATEGORY="utilities" |
devl547@5222 | 6 SHORT_DESC="Application designed to test GTK+ performance." |
devl547@5222 | 7 MAINTAINER="devl547@gmail.com" |
pascal@15589 | 8 LICENSE="GPL2" |
al@19001 | 9 TARBALL="${PACKAGE}_${VERSION}.tar.gz" |
devl547@5222 | 10 WEB_SITE="http://gtkperf.sourceforge.net/" |
al@19001 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@15589 | 12 |
devl547@5222 | 13 DEPENDS="gtk+" |
pascal@15590 | 14 BUILD_DEPENDS="gtk+-dev gettext autoconf" |
devl547@5222 | 15 |
devl547@5222 | 16 # Rules to configure and make the package. |
devl547@5222 | 17 compile_rules() |
devl547@5222 | 18 { |
pascal@19290 | 19 sed -i 's|/doc|/share&|' Makefile* |
pascal@15159 | 20 ./configure $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath && |
devl547@5222 | 21 make && |
slaxemulator@9034 | 22 make DESTDIR=$DESTDIR install |
devl547@5222 | 23 } |
devl547@5222 | 24 |
devl547@5222 | 25 # Rules to gen a SliTaz package suitable for Tazpkg. |
devl547@5222 | 26 genpkg_rules() |
devl547@5222 | 27 { |
pascal@19290 | 28 mkdir -p $fs/usr/share |
pascal@15589 | 29 cp -a $install/usr/bin $fs/usr |
pascal@19290 | 30 cp -a $install/usr/share/pixmaps $fs/usr/share |
devl547@5222 | 31 } |