wok view gtkdialog/receipt @ rev 2153

Up: wireshark (1.0.5)
author Christophe Lincoln <pankso@slitaz.org>
date Thu Feb 05 21:07:52 2009 +0100 (2009-02-05)
parents adcc56f6c3e9
children c91fdd0583b9
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"
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 }