wok-next view listpatron/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="listpatron"
4 VERSION="0.1.1"
5 CATEGORY="office"
6 SHORT_DESC="GTK+2 application for maintaining lists of information"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/fboender/listpatron"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://projects.electricmonk.nl/projects/$PACKAGE/$TARBALL" # FIXME
14 BUILD_DEPENDS="gtk2-dev"
16 compile_rules() {
17 ./configure \
18 --prefix=/usr \
19 --libexecdir=/usr/lib/$PACKAGE \
20 $CONFIGURE_ARGS &&
21 make &&
22 make DESTDIR=$install install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr/share/applications
27 cp -a $stuff/listpatron.desktop $fs/usr/share/applications
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/pixmaps $fs/usr/share
30 cp -a $install/usr/share/xml $fs/usr/share
31 cd $fs/usr/share/pixmaps
32 ln -s listpatron/icons/listpatron-col-add.png listpatron.png
33 DEPENDS="gtk2 libxdamage"
34 }