wok annotate gtkdialog/receipt @ rev 1116

Add mcabber mcabber-help
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 20 11:43:38 2008 +0000 (2008-07-20)
parents 5f85fb04f6b8
children adcc56f6c3e9
rev   line source
pankso@28 1 # SliTaz package receipt.
pankso@28 2
pankso@28 3 PACKAGE="gtkdialog"
pankso@764 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"
pankso@28 8 DEPENDS="gtk+"
pankso@28 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@28 10 WEB_SITE="http://linux.pte.hu/~pipas/gtkdialog/"
pankso@28 11 WGET_URL="ftp://linux.pte.hu/pub/gtkdialog/$TARBALL"
pankso@28 12
pankso@28 13 # Rules to configure and make the package.
pankso@28 14 compile_rules()
pankso@28 15 {
pankso@28 16 cd $src
pankso@764 17 ./configure \
pankso@764 18 --prefix=/usr \
pankso@764 19 --infodir=/usr/share/info \
pankso@764 20 --mandir=/usr/share/man \
pankso@764 21 $CONFIGURE_ARGS
pankso@28 22 make
pankso@28 23 make DESTDIR=$PWD/_pkg install
pankso@28 24 }
pankso@28 25
pankso@28 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@28 27 genpkg_rules()
pankso@28 28 {
pankso@28 29 mkdir -p $fs/usr/share/examples
pankso@28 30 cp -a $_pkg/usr/bin $fs/usr
pankso@28 31 # Fiew examples.
pankso@28 32 cp -a stuff/examples $fs/usr/share/examples/gtkdialog
pankso@28 33 }
pankso@28 34