wok view gtkdialog/receipt @ rev 2516

g*: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 16 22:01:20 2009 +0000 (2009-03-16)
parents c91fdd0583b9
children d4cf86e94f5c
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkdialog"
4 VERSION="0.7.20"
5 CATEGORY="x-window"
6 SHORT_DESC="Small utility for fast and easy GUI building using GTK+."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="gtk+ libglade xorg-libXdamage"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/"
11 WGET_URL="ftp://linux.pte.hu/pub/gtkdialog/$TARBALL"
12 #0.7.21 is 0.7.15 !! WGET_URL="http://www.sfr-fresh.com/unix/privat/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --infodir=/usr/share/info \
21 --mandir=/usr/share/man \
22 $CONFIGURE_ARGS &&
23 make &&
24 make DESTDIR=$PWD/_pkg install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/share/examples
31 cp -a $_pkg/usr/bin $fs/usr
32 # Fiew examples.
33 cp -a stuff/examples $fs/usr/share/examples/gtkdialog
34 }