wok view grisbi/receipt @ rev 9079

prboom: fix doom1.wad url
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Mar 04 16:47:22 2011 +0100 (2011-03-04)
parents 4f0ee4a28c91
children 8da399980a44
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"
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 }