wok annotate gpick/receipt @ rev 15429

Up: thunderbird-langpack-zh_CN (17.0.9esr)
author Dominique Corbex <domcox@slitaz.org>
date Sun Nov 03 21:52:58 2013 +0100 (2013-11-03)
parents
children de49f29b101e
rev   line source
al@14066 1 # SliTaz package receipt.
al@14066 2
al@14066 3 PACKAGE="gpick"
al@14066 4 VERSION="0.2.5rc1"
al@14066 5 CATEGORY="graphics"
al@14066 6 SHORT_DESC="Advanced color picker written in C++ using GTK+ toolkit"
al@14066 7 MAINTAINER="al.bobylev@gmail.com"
al@14066 8 WEB_SITE="http://code.google.com/p/gpick/"
al@14066 9 TARBALL="${PACKAGE}_$VERSION.tar.gz"
al@14066 10 WGET_URL="http://$PACKAGE.googlecode.com/files/$TARBALL"
al@14066 11
al@14066 12 DEPENDS="gtk+"
al@14066 13 SUGGESTED="lua"
al@14066 14 BUILD_DEPENDS="scons gettext lemon flex gtk+-dev expat-dev libboost-dev \
al@14066 15 dbus-glib-dev lua-dev"
al@14066 16
al@14066 17 # Rules to configure and make the package.
al@14066 18 compile_rules()
al@14066 19 {
al@14066 20 scons DESTDIR=$install BUILD_TARGET="i486" install
al@14066 21 }
al@14066 22
al@14066 23 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14066 24 genpkg_rules()
al@14066 25 {
al@14066 26 mkdir -p $fs/usr/share
al@14066 27 cp -a $install/bin $fs/usr
al@14066 28 cp -a $install/share/$PACKAGE $fs/usr/share
al@14066 29 cp -a $install/share/icons $fs/usr/share
al@14066 30 cp -a $install/share/locale $fs/usr/share
al@14066 31 cp -a $install/share/man $fs/usr/share
al@14066 32 }
al@14066 33