# SliTaz package receipt PACKAGE="homebank" VERSION="4.4" CATEGORY="office" SHORT_DESC="Personal accounts manager." MAINTAINER="pankso@slitaz.org" DEPENDS="gtk+ xorg-libXdamage" BUILD_DEPENDS="intltool" TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://homebank.free.fr/" WGET_URL="http://homebank.free.fr/public/$TARBALL" TAGS="office finance" # Rules to configure and make the package. compile_rules() { cd $src # GTK+ dont support svg sed -i s/svg/png/ src/*.c chmod +x install-sh ./configure \ --without-ofx && make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/share/homebank $fs/usr/share/pixmaps cp -a $_pkg/usr/bin $fs/usr cp -a $_pkg/usr/share/mime $fs/usr/share cp -a $_pkg/usr/share/homebank/images $fs/usr/share/homebank #copying homebank icon. cp -a "$_pkg/usr/share/icons/hicolor/48x48/apps/homebank.png" $fs/usr/share/pixmaps }