wok view gtkdialog/receipt @ rev 1113

iw: put all file a a real dir so we can clean
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jul 19 21:19:53 2008 +0200 (2008-07-19)
parents 5f85fb04f6b8
children adcc56f6c3e9
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+"
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"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 ./configure \
18 --prefix=/usr \
19 --infodir=/usr/share/info \
20 --mandir=/usr/share/man \
21 $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/examples
30 cp -a $_pkg/usr/bin $fs/usr
31 # Fiew examples.
32 cp -a stuff/examples $fs/usr/share/examples/gtkdialog
33 }