wok-next rev 8465

Up: grisbi (0.6.0) + add plugins support
author Eric Joseph-Alexandre <erjo@slitaz.org>
date Mon Feb 07 16:43:43 2011 +0100 (2011-02-07)
parents 9af1fe7ff6a8
children f0eb7a94e3f1
files grisbi/receipt
line diff
     1.1 --- a/grisbi/receipt	Mon Feb 07 16:40:34 2011 +0100
     1.2 +++ b/grisbi/receipt	Mon Feb 07 16:43:43 2011 +0100
     1.3 @@ -1,21 +1,24 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="grisbi"
     1.7 -VERSION="0.5.9"
     1.8 +VERSION="0.6.0"
     1.9  CATEGORY="office"
    1.10  SHORT_DESC="Personnal bank manager"
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 -DEPENDS="gtk+ xorg-libXdamage"
    1.13 -BUILD_DEPENDS="pkg-config glib gtk+ libxml2 gtk+-dev glib-dev"
    1.14 +DEPENDS="gtk+ xorg-libXdamage libofx libofx"
    1.15 +BUILD_DEPENDS="pkg-config glib gtk+ libxml2 gtk+-dev glib-dev libofx-dev"
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17  WEB_SITE="http://www.grisbi.org/index.fr.html"
    1.18  WGET_URL="http://heanet.dl.sourceforge.net/sourceforge/grisbi/$TARBALL"
    1.19 +SUGGESTED="grisbi-plugins"
    1.20  
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24  	cd $src
    1.25 -	./configure --prefix=/usr $CONFIGURE_ARGS &&
    1.26 +	./configure --prefix=/usr \
    1.27 +		--with-plugins \
    1.28 +		$CONFIGURE_ARGS &&
    1.29  	make &&
    1.30  	make DESTDIR=$PWD/_pkg install
    1.31  }
    1.32 @@ -23,9 +26,11 @@
    1.33  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.34  genpkg_rules()
    1.35  {
    1.36 -	mkdir -p $fs/usr/share
    1.37 +	mkdir -p $fs/usr/share/grisbi/categories
    1.38 +	
    1.39  	cp -a $_pkg/usr/bin $fs/usr
    1.40  	cp -a $_pkg/usr/share/pixmaps $fs/usr/share
    1.41  	cp -a $_pkg/usr/share/mime-info $fs/usr/share
    1.42  	cp -a $fs/usr/share/pixmaps/grisbi/grisbi.png $fs/usr/share/pixmaps 
    1.43 +	cp -a $_pkg/usr/share/grisbi/categories/fr* $fs/usr/share/grisbi/categories/
    1.44  }