wok view zenity/receipt @ rev 4150

midori: add Slitaz homepage
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sun Sep 20 20:31:38 2009 +0000 (2009-09-20)
parents 99b1ceefe255
children e727c9e1f7ad
line source
1 # SliTaz package receipt.
3 PACKAGE="zenity"
4 VERSION="2.26.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.26/$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 }