wok view grisbi/receipt @ rev 20595

xfi, xfw, cryptkeeper: dirty hack
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Dec 16 10:41:06 2018 +0100 (2018-12-16)
parents 033f4b0fc8e1
children 370da83187ab
line source
1 # SliTaz package receipt.
3 PACKAGE="grisbi"
4 VERSION="1.0.0"
5 CATEGORY="office"
6 SHORT_DESC="Personnal bank manager"
7 MAINTAINER="erjo@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.grisbi.org/"
11 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/grisbi/$TARBALL"
13 DEPENDS="gtk+ xorg-libXdamage libofx libofx libssl"
14 BUILD_DEPENDS="pkg-config glib gtk+ libxml2 gtk+-dev glib-dev libofx-dev \
15 opensp-dev openssl-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure --prefix=/usr \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share
30 cp -a $install/usr/bin $fs/usr
31 for i in applications grisbi icons pixmaps; do
32 cp -a $install/usr/share/$i $fs/usr/share
33 done
34 }