wok annotate gxmessage/receipt @ rev 17569

syslinux/iso2exe/init: fix reboot
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 07 20:40:28 2015 +0100 (2015-02-07)
parents 8b79c3ee7ac2
children 20661c276bcf
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@15589 8 LICENSE="GPL2"
erjo@2155 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@2155 10 WEB_SITE="http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage"
erjo@2155 11 WGET_URL="http://homepages.ihug.co.nz/~trmusson/stuff/$TARBALL"
erjo@2155 12
pascal@15589 13 DEPENDS="gtk+ expat xorg-libXdamage"
pascal@15589 14 BUILD_DEPENDS="gtk+-dev"
pascal@15589 15
erjo@2155 16 # Rules to configure and make the package.
erjo@2155 17 compile_rules()
erjo@2155 18 {
erjo@2155 19 cd $src
erjo@2155 20 ./configure --prefix=/usr $CONFIGURE_ARGS && \
erjo@2155 21 make
erjo@2155 22 }
erjo@2155 23
erjo@2155 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@2155 25 genpkg_rules()
erjo@2155 26 {
erjo@2155 27 mkdir -p $fs/usr/bin $fs/usr/share/pixmaps
erjo@2155 28
erjo@2155 29 cp -a $src/gxmessage $fs/usr/bin
erjo@2155 30 cp -a $src/gxmessage.png $fs/usr/share/pixmaps
erjo@2155 31 }
erjo@2155 32