wok view slitaz-configs/receipt @ rev 3089

slitaz-configs: Dont forget skel and X11
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 16 19:16:28 2009 +0200 (2009-05-16)
parents 7ee4fc48562b
children f9381c4b49ca
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-configs"
4 VERSION="3.0"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz config files, wallpaper and login sound."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="slitaz-tools xorg-libXcomposite xorg-libXdamage xorg-xcompmgr \
9 transset-df tazlito tazpkg slitaz-doc lxtask lxpanel lxappearance \
10 ttf-dejavu pcmanfm openbox obconf slitaz-tools-boxes slitaz-menus"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WEB_SITE="http://www.slitaz.org/"
13 WGET_URL="http://mirror.slitaz.org/sources/configs/$TARBALL"
15 # Rules to gen a SliTaz package suitable for Tazpkg.
16 genpkg_rules()
17 {
18 # Copy rootfs files from the stuff and set permissions.
19 mkdir -p $fs/etc/xdg/openbox
20 cp -a $src/rootfs/etc/xdg/openbox/menu.en.xml $fs/etc/xdg/openbox
21 cp -a $src/rootfs/etc/xdg/openbox/menu.xml $fs/etc/xdg/openbox
22 cp -a $src/rootfs/etc/skel $fs/etc
23 cp -a $src/rootfs/etc/X11 $fs/etc
24 mkdir $fs/etc/skel/Music $fs/etc/skel/Documents
25 cp -a $src/rootfs/usr $fs
26 cp -a $src/rootfs/root $fs
27 chown -R root.root $fs
28 chmod 0750 $fs/root
29 }
31 post_install()
32 {
33 # By default slim provide a base theme and config file have both
34 # base and slitaz who will be choose randomly, so make sure we use
35 # only slitaz theme.
36 if grep -q 'current_theme slitaz,base' $1/etc/slim.conf; then
37 sed -i s/"current_theme .*"/"current_theme slitaz"/ \
38 $1/etc/slim.conf
39 fi
40 }