wok-next view homebank/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt
3 PACKAGE="homebank"
4 VERSION="4.4"
5 CATEGORY="office"
6 SHORT_DESC="Personal accounts manager"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://homebank.free.fr/en/index.php"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="http://homebank.free.fr/public/$TARBALL"
14 BUILD_DEPENDS="intltool gtk2-dev"
16 compile_rules() {
17 # GTK+ dont support svg
18 sed -i s/svg/png/ src/*.c
19 chmod +x install-sh
20 ./configure --without-ofx &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 mkdir -p $fs/usr/share/homebank $fs/usr/share/icons/hicolor
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/homebank/images $fs/usr/share/homebank
30 cp -a $install/usr/share/icons/hicolor/48x48 $fs/usr/share/icons/hicolor
31 DEPENDS="gtk2 libxdamage"
32 TAGS="office finance"
33 }