wok view zenity/receipt @ rev 5321

Up: boxbackup-client (0.11rc7)
author Dominique Corbex <domcox@slitaz.org>
date Wed Apr 21 19:54:12 2010 +0200 (2010-04-21)
parents b303dfac3b48
children 117d9c496784
line source
1 # SliTaz package receipt.
3 PACKAGE="zenity"
4 VERSION="2.28.0"
5 CATEGORY="development"
6 SHORT_DESC="gui dialogs"
7 MAINTAINER="allan316@gmail.com"
8 DEPENDS="gtk+ libglade libnotify"
9 BUILD_DEPENDS="gnome-doc-utils gnome-doc-utils-dev libglade-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://www.gnome.org"
12 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/zenity/2.28/$TARBALL"
13 TAGS="dialogs gui"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure \
20 --prefix=/usr \
21 --localstatedir=/var/lib \
22 --disable-scrollkeeper \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make && make DESTDIR=$PWD/_pkg install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/share
33 cp -a $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/share/zenity $fs/usr/share
35 cp -a $_pkg/usr/share/omf $fs/usr/share
36 }