wok view homebank/receipt @ rev 16294

Up: xfce-utils (4.8.3)
author Alexander Medvedev <devl547@gmail.com>
date Mon Apr 07 07:39:54 2014 +0000 (2014-04-07)
parents a3a1e544875b
children 533c0cab6960
line source
1 # SliTaz package receipt
3 PACKAGE="homebank"
4 VERSION="4.4"
5 CATEGORY="office"
6 SHORT_DESC="Personal accounts manager."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://homebank.free.fr/"
11 WGET_URL="http://homebank.free.fr/public/$TARBALL"
12 TAGS="office finance"
14 DEPENDS="gtk+ xorg-libXdamage"
15 BUILD_DEPENDS="intltool gtk+-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 # GTK+ dont support svg
22 sed -i s/svg/png/ src/*.c
23 chmod +x install-sh
24 ./configure \
25 --without-ofx &&
26 make &&
27 make install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/share/homebank $fs/usr/share/pixmaps
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/mime $fs/usr/share
37 cp -a $install/usr/share/homebank/images $fs/usr/share/homebank
38 #copying homebank icon.
39 cp -a "$install/usr/share/icons/hicolor/48x48/apps/homebank.png" $fs/usr/share/pixmaps
41 }