wok annotate gxmessage/receipt @ rev 3675

Add ocsinventory-agent
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Sat Jul 11 12:17:46 2009 +0200 (2009-07-11)
parents c91fdd0583b9
children d1c17bd2c2bc
rev   line source
erjo@2155 1 # SliTaz package receipt.
erjo@2155 2
erjo@2155 3 PACKAGE="gxmessage"
erjo@2155 4 VERSION="2.6.2"
pascal@2180 5 CATEGORY="utilities"
erjo@2155 6 SHORT_DESC="GTK2-based clone of xmessage"
erjo@2155 7 MAINTAINER="erjo@slitaz.org"
pascal@2516 8 DEPENDS="gtk+ expat xorg-libXdamage"
erjo@2155 9 BUILD_DEPENDS="gtk+-dev"
erjo@2155 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@2155 11 WEB_SITE="http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage"
erjo@2155 12 WGET_URL="http://homepages.ihug.co.nz/~trmusson/stuff/$TARBALL"
erjo@2155 13
erjo@2155 14 # Rules to configure and make the package.
erjo@2155 15 compile_rules()
erjo@2155 16 {
erjo@2155 17 cd $src
erjo@2155 18 ./configure --prefix=/usr $CONFIGURE_ARGS && \
erjo@2155 19 make
erjo@2155 20 }
erjo@2155 21
erjo@2155 22 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2155 23 genpkg_rules()
erjo@2155 24 {
erjo@2155 25 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
erjo@2155 26
erjo@2155 27 cp -a $src/gxmessage $fs/usr/bin
erjo@2155 28 cp -a $src/gxmessage.png $fs/usr/share/pixmaps
erjo@2155 29 }
erjo@2155 30