wok view slitaz-icon/receipt @ rev 7674

Fixed linux. Need to make folder PWD/_pkg before adding bzImage to it. Also i'm force copying kernel config file now so we have the right config. It is copyed twice so its needed and doesn't hunt anything i think.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Dec 16 17:16:06 2010 +0000 (2010-12-16)
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 }