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