wok view slitaz-icon/receipt @ rev 4075

Add: libupnp (The portable Universal Plug and Play)
author Christophe Lincoln <pankso@slitaz.org>
date Sun Sep 13 23:57:55 2009 +0200 (2009-09-13)
parents
children 9d438789a992
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-icon"
4 VERSION="1.0"
5 CATEGORY="misc"
6 SHORT_DESC="SliTaz icons in size 16x16 and 32x32 (minimum)."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.slitaz.org/"
10 WGET_URL="http://mirror.slitaz.org/sources/artwok/$TARBALL"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 genpkg_rules()
14 {
15 mkdir -p $fs/usr/share/icons
16 cp -a $src/SliTaz $fs/usr/share/icons
17 cp -a $src/themes/redyello/* $fs/usr/share/icons/SliTaz
18 chown -R root.root $fs
19 }
21 post_install()
22 {
23 # Some desktop files anf boxes have hardcore path to some Tango
24 # icons, so fake.
25 if [ ! -d $1/usr/share/icons/Tango/16x16 ]; then
26 cd $1/usr/share/icons && rm -rf Tango
27 ln -s SliTaz Tango
28 fi
29 # Default icon theme to SliTaz.
30 sed -i s/Tango/SliTaz/ $1/etc/skel/.gtkrc-2.0
31 }