wok diff faenza-icon-theme-emblems/receipt @ rev 14649

Up wicd (1.7.2.4)
author Richard Dunbar <mojo@slitaz.org>
date Tue Jun 04 00:13:54 2013 +0000 (2013-06-04)
parents
children 2b9f96603415
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/faenza-icon-theme-emblems/receipt	Tue Jun 04 00:13:54 2013 +0000
     1.3 @@ -0,0 +1,39 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="faenza-icon-theme-emblems"
     1.7 +VERSION="1.3"
     1.8 +CATEGORY="x-window"
     1.9 +SHORT_DESC="Faenza icon theme (emblems)"
    1.10 +MAINTAINER="al.bobylev@gmail.com"
    1.11 +LICENSE=""
    1.12 +WEB_SITE="http://tiheum.deviantart.com/art/Faenza-Icons-173323228"
    1.13 +
    1.14 +WANTED="faenza-icon-theme"
    1.15 +DEPENDS="faenza-icon-theme"
    1.16 +
    1.17 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.18 +genpkg_rules()
    1.19 +{
    1.20 +	mkdir -p $fs/usr/share/icons
    1.21 +	cd $fs/usr/share/icons
    1.22 +	tar xf $src/Faenza.tar.gz Faenza/emblems
    1.23 +	# remove big sizes and scalable
    1.24 +	rm -rf $(find . -type d -regex '.*/\(64\|96\|scalable\)')
    1.25 +	# SliTaz locale settings
    1.26 +	. $WOK/slitaz-i18n/stuff/locale-pack.conf
    1.27 +	cd $fs/usr/share/icons/Faenza/emblems/16
    1.28 +	for icon in $(ls -1 *.icon); do
    1.29 +		CONTENT=$(cat $icon);
    1.30 +		echo "[Icon Data]" > $icon;
    1.31 +		echo "$CONTENT" | grep 'DisplayName=' >> $icon;
    1.32 +		for lang in $LOCALE_PACK; do
    1.33 +			echo "$CONTENT" | fgrep "DisplayName["$lang"]=" >> $icon;
    1.34 +			for size in 22 24 32 48; do
    1.35 +				rm -f ../$size/$icon
    1.36 +				ln -s ../16/$icon ../$size/$icon
    1.37 +			done
    1.38 +		done
    1.39 +	done
    1.40 +	true
    1.41 +}
    1.42 +