wok annotate listpatron/receipt @ rev 19009

busybox/fbvnc: wheelmouse support (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 28 18:28:53 2016 +0200 (2016-03-28)
parents af9a1b47948c
children b9659e3c2111
rev   line source
pankso@455 1 # SliTaz package receipt.
pankso@455 2
pankso@455 3 PACKAGE="listpatron"
pankso@455 4 VERSION="0.1.1"
pankso@455 5 CATEGORY="office"
pankso@455 6 SHORT_DESC="GTK+2 application for maintaining lists of information.."
pankso@455 7 MAINTAINER="pankso@slitaz.org"
pascal@15379 8 LICENSE="GPL2"
pankso@455 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pankso@455 10 WEB_SITE="http://www.electricmonk.nl/Programmings/ListPatron"
pankso@455 11 WGET_URL="http://projects.electricmonk.nl/projects/$PACKAGE/$TARBALL"
pankso@455 12
pascal@15379 13 DEPENDS="gtk+ xorg-libXdamage"
pascal@15379 14 BUILD_DEPENDS="gtk+-dev"
pascal@15379 15
pankso@455 16 # Rules to configure and make the package.
pankso@455 17 compile_rules()
pankso@455 18 {
pankso@455 19 cd $src
pankso@455 20 ./configure \
pankso@455 21 --prefix=/usr \
pankso@455 22 --libexecdir=/usr/lib/$PACKAGE \
pascal@2518 23 $CONFIGURE_ARGS &&
pascal@2518 24 make &&
pascal@15379 25 make DESTDIR=$DESTDIR install
pankso@455 26 }
pankso@455 27
pankso@455 28 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@455 29 genpkg_rules()
pankso@455 30 {
pascal@11623 31 mkdir -p $fs/usr/share/applications
pascal@11623 32 cp -a $stuff/listpatron.desktop $fs/usr/share/applications
pascal@15379 33 cp -a $install/usr/bin $fs/usr
pascal@15379 34 cp -a $install/usr/share/pixmaps $fs/usr/share
pascal@15379 35 cp -a $install/usr/share/xml $fs/usr/share
pankso@760 36 cd $fs/usr/share/pixmaps
pankso@760 37 ln -s listpatron/icons/listpatron-col-add.png listpatron.png
pankso@455 38 }
pankso@455 39