wok diff homebank/receipt @ rev 19682

Add rclone (sync cloud services from cmdline)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Feb 12 00:38:57 2017 +0100 (2017-02-12)
parents 106380bf8153
children e0c285ab815e
line diff
     1.1 --- a/homebank/receipt	Tue Aug 13 16:48:11 2013 +0000
     1.2 +++ b/homebank/receipt	Sun Feb 12 00:38:57 2017 +0100
     1.3 @@ -16,13 +16,11 @@
     1.4  
     1.5  # Rules to configure and make the package.
     1.6  compile_rules()
     1.7 -{	
     1.8 -	cd $src
     1.9 +{
    1.10  	# GTK+ dont support svg
    1.11  	sed -i s/svg/png/ src/*.c
    1.12  	chmod +x install-sh
    1.13 -	./configure \
    1.14 -		--without-ofx &&
    1.15 +	./configure --without-ofx &&
    1.16  	make &&
    1.17  	make install
    1.18  }
    1.19 @@ -30,12 +28,9 @@
    1.20  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.21  genpkg_rules()
    1.22  {
    1.23 -	mkdir -p $fs/usr/share/homebank $fs/usr/share/pixmaps
    1.24 -	
    1.25 +	mkdir -p $fs/usr/share/homebank $fs/usr/share/icons/hicolor
    1.26 +
    1.27  	cp -a $install/usr/bin $fs/usr
    1.28 -	cp -a $install/usr/share/mime $fs/usr/share
    1.29  	cp -a $install/usr/share/homebank/images $fs/usr/share/homebank
    1.30 -	#copying  homebank icon.
    1.31 -	cp -a "$install/usr/share/icons/hicolor/48x48/apps/homebank.png" $fs/usr/share/pixmaps 
    1.32 -
    1.33 +	cp -a $install/usr/share/icons/hicolor/48x48 $fs/usr/share/icons/hicolor
    1.34  }