wok view gtkdialog/receipt @ rev 582

Add: partimage, ndiswrapper
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Tue Apr 15 14:37:39 2008 +0200 (2008-04-15)
parents
children d1a479ee9872
line source
1 # SliTaz package receipt.
3 PACKAGE="gtkdialog"
4 VERSION="0.7.9"
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 --prefix=/usr --infodir=/usr/share/info \
18 --mandir=/usr/share/man $CONFIGURE_ARGS
19 make
20 make DESTDIR=$PWD/_pkg install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/share/examples
27 cp -a $_pkg/usr/bin $fs/usr
28 strip -s $fs/usr/bin/*
29 # Fiew examples.
30 cp -a stuff/examples $fs/usr/share/examples/gtkdialog
31 }