wok annotate geeqie/receipt @ rev 15074

geeqie: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 16:32:16 2013 +0000 (2013-08-13)
parents e77aaed10422
children f4c22f009037
rev   line source
devl547@5249 1 # SliTaz package receipt.
devl547@5249 2
devl547@5249 3 PACKAGE="geeqie"
devl547@5249 4 VERSION="1.0"
devl547@5693 5 CATEGORY="utilities"
devl547@5693 6 SHORT_DESC="Application designed to test GTK+ performance."
devl547@5249 7 MAINTAINER="devl547@gmail.com"
pascal@15074 8 LICENCE="GPL2"
devl547@5249 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
devl547@5249 10 WEB_SITE="http://geeqie.sourceforge.net/"
devl547@5249 11 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
pascal@15074 12
pascal@9022 13 DEPENDS="gtk+"
pascal@15074 14 BUILD_DEPENDS="gettext intltool gtk+-dev"
devl547@5249 15
devl547@5249 16 # Rules to configure and make the package.
devl547@5249 17 compile_rules()
devl547@5249 18 {
devl547@5249 19 cd $src
devl547@5249 20 ./configure --prefix=/usr --infodir=/usr/share/info \
devl547@5249 21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
devl547@5249 22 make &&
pascal@9022 23 make install
devl547@5249 24 }
devl547@5249 25
devl547@5249 26 # Rules to gen a SliTaz package suitable for Tazpkg.
devl547@5249 27 genpkg_rules()
devl547@5249 28 {
devl547@5249 29 mkdir -p $fs/usr/
pascal@15074 30 cp -a $install/usr/bin $fs/usr
pascal@15074 31 cp -a $install/usr/lib $fs/usr
pascal@15074 32 cp -a $install/usr/share/ $fs/usr
devl547@5249 33 }