wok view 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
line source
1 # SliTaz package receipt.
3 PACKAGE="geeqie"
4 VERSION="1.0"
5 CATEGORY="utilities"
6 SHORT_DESC="Application designed to test GTK+ performance."
7 MAINTAINER="devl547@gmail.com"
8 LICENCE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://geeqie.sourceforge.net/"
11 WGET_URL="http://downloads.sourceforge.net/project/$PACKAGE/$PACKAGE/$PACKAGE-$VERSION/$TARBALL"
13 DEPENDS="gtk+"
14 BUILD_DEPENDS="gettext intltool gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS &&
22 make &&
23 make install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/
30 cp -a $install/usr/bin $fs/usr
31 cp -a $install/usr/lib $fs/usr
32 cp -a $install/usr/share/ $fs/usr
33 }