wok view grisbi/receipt @ rev 10777

yaff: fix path to files (again)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Jun 01 00:26:48 2011 +0200 (2011-06-01)
parents 518dcd52425b
children af9a1b47948c
line source
1 # SliTaz package receipt.
3 PACKAGE="grisbi"
4 VERSION="0.6.0"
5 CATEGORY="office"
6 SHORT_DESC="Personnal bank manager"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="gtk+ xorg-libXdamage libofx libofx"
9 BUILD_DEPENDS="pkg-config glib gtk+ libxml2 gtk+-dev glib-dev libofx-dev opensp-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://www.grisbi.org/index.fr.html"
12 WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/grisbi/$TARBALL"
13 SUGGESTED="grisbi-plugins"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 ./configure --prefix=/usr \
20 --with-plugins \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/share/grisbi/categories
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/share/pixmaps $fs/usr/share
33 cp -a $_pkg/usr/share/mime-info $fs/usr/share
34 cp -a $fs/usr/share/pixmaps/grisbi/grisbi.png $fs/usr/share/pixmaps
35 cp -a $_pkg/usr/share/grisbi/categories/fr* $fs/usr/share/grisbi/categories/
36 }