wok annotate gcolor2/receipt @ rev 10047

Up: alsa-lib to 1.0.24.1. Add $CONFIGURE_ARGS.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri May 20 03:49:46 2011 +0000 (2011-05-20)
parents 8b79c3ee7ac2
children af9a1b47948c
rev   line source
pankso@43 1 # SliTaz package receipt.
pankso@43 2
pankso@43 3 PACKAGE="gcolor2"
pankso@43 4 VERSION="0.4"
pankso@207 5 CATEGORY="graphics"
pankso@43 6 SHORT_DESC="Light and simple color selector."
pankso@43 7 MAINTAINER="pankso@slitaz.org"
pascal@2516 8 DEPENDS="gtk+ xorg-libXdamage"
pascal@1514 9 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev perl-xml-parser"
pankso@43 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@43 11 WEB_SITE="http://gcolor2.sourceforge.net/"
pankso@43 12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
pankso@43 13
pankso@43 14 # Rules to configure and make the package.
pankso@43 15 compile_rules()
pankso@43 16 {
pankso@43 17 cd $src
pankso@43 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@1465 19 --mandir=/usr/share/man $CONFIGURE_ARGS &&
pascal@1465 20 make &&
pankso@43 21 make DESTDIR=$PWD/_pkg install
pankso@43 22 }
pankso@43 23
pankso@43 24 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@43 25 genpkg_rules()
pankso@43 26 {
pankso@43 27 mkdir -p $fs/usr
pankso@43 28 cp -a $_pkg/usr/bin $fs/usr
pankso@43 29
pankso@43 30 cp -a $_pkg/usr/share $fs/usr
pankso@43 31 cd $fs/usr/share/pixmaps
pankso@43 32 ln -s gcolor2/icon.png gcolor2.png
pankso@43 33 }
pankso@43 34