wok view slitaz-configs-base/receipt @ rev 18047

Up tazusb (178), tazpanel (496), slitaz-config (254)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 14 09:18:57 2015 +0200 (2015-05-14)
parents a4d6a8f250d4
children e12b8d32e95b
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-configs-base"
4 VERSION="254"
5 CATEGORY="base-system"
6 SHORT_DESC="SliTaz config files for text based systems."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.slitaz.org/"
10 SOURCE="slitaz-configs"
11 TARBALL="$SOURCE-$VERSION.tar.gz"
12 WGET_URL="http://hg.slitaz.org/slitaz-configs/archive/$VERSION.tar.gz"
13 HOST_ARCH="i486 arm"
15 DEPENDS="tazlito tazpkg"
17 # Handle SliTaz arch
18 case "$SLITAZ_ARCH" in
19 arm*) DEPENDS="" ;;
20 esac
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 # Copy rootfs files and set permissions.
26 case "$ARCH" in
27 arm*)
28 # Most ARM configs are in: slitaz-arm repo but Openbox, webhome
29 # are common to all arch.
30 mkdir -p $fs/usr/share $fs/etc
31 cp -a $src/rootfs/usr/bin $fs/usr
32 cp -a $src/rootfs/etc/lxpanel $fs/etc
33 cp -a $src/rootfs/etc/skel $fs/etc
34 # No dbus on ARM
35 sed "s/exec dbus.*$/exec\"/" -i $fs/etc/skel/.xinitrc ;;
36 *)
37 mkdir -p \
38 $fs/boot \
39 $fs/usr/share
40 # XDG user directories
41 for dir in Desktop Documents Downloads Images Music Public \
42 Templates Videos; do
43 mkdir -p $fs/etc/skel/$dir
44 done
45 cp -a $src/rootfs/boot $fs
46 cp -a $src/rootfs/etc/skel $fs/etc
47 cp -a $src/rootfs/etc/polkit-1 $fs/etc ;;
48 esac
50 for i in images pixmaps themes webhome; do
51 cp -r $src/rootfs/usr/share/$i $fs/usr/share
52 done
54 cp -a $src/rootfs/root $fs
55 chown -R root.root $fs
56 chmod 0750 $fs/root
57 }
59 post_install()
60 {
61 for i in $(ls -d $1/root $1/home/* 2> /dev/null); do
62 [ -d $i ] && cp -f $1/etc/skel/.xinitrc $i
63 done
64 sed -i 's|$HOME/.config|/etc|' $1/root/.xinitrc
65 echo "Updating ~/.xinitrc ... Done."
66 }