wok view zenity/receipt @ rev 7516

Added libgnomcanvas to libgnomecanvas-dev depends.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Dec 04 19:12:57 2010 +0000 (2010-12-04)
parents 117d9c496784
children b38027a04252
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.bz2"
11 WEB_SITE="http://www.gnome.org"
12 WGET_URL="http://ftp.acc.umu.se/pub/GNOME/sources/$PACKAGE/${VERSION%.*}/$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 }