wok view zenity/receipt @ rev 4774

Up: get-virtualbox (1.01) - Improve vbox installer for slitaz.
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Wed Jan 13 00:39:30 2010 +0100 (2010-01-13)
parents 7e4cc2ea9585
children b303dfac3b48
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"
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"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --localstatedir=/var/lib \
21 --disable-scrollkeeper \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make && make DESTDIR=$PWD/_pkg install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/share
32 cp -a $_pkg/usr/bin $fs/usr
33 cp -a $_pkg/usr/share/zenity $fs/usr/share
34 cp -a $_pkg/usr/share/omf $fs/usr/share
35 }