wok-4.x annotate gtkdialog/receipt @ rev 1518
Up gtkdialog (0.7.21)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Oct 08 10:44:00 2008 +0000 (2008-10-08) |
parents | d1a479ee9872 |
children | 05c3e840bdfa |
rev | line source |
---|---|
pankso@28 | 1 # SliTaz package receipt. |
pankso@28 | 2 |
pankso@28 | 3 PACKAGE="gtkdialog" |
pascal@1518 | 4 VERSION="0.7.21" |
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" |
pankso@28 | 8 DEPENDS="gtk+" |
pankso@28 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@28 | 10 WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/" |
pascal@1518 | 11 #WGET_URL="ftp://linux.pte.hu/pub/gtkdialog/$TARBALL" |
pascal@1518 | 12 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 |