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

Up atk-dev (2.7.5)
author Yuri Pourre <yuripourre@gmail.com>
date Sun Jul 13 13:06:14 2014 -0300 (2014-07-13)
parents 5dd63acec41c
children 5713a7350bb6
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-configs-base"
4 VERSION="5.5.2"
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 *)
35 mkdir -p \
36 $fs/boot \
37 $fs/usr/share
38 # XDG user directories
39 for dir in Desktop Documents Downloads Images Music Public \
40 Templates Videos; do
41 mkdir -p $fs/etc/skel/$dir
42 done
43 cp -a $src/rootfs/boot $fs
44 cp -a $src/rootfs/etc/skel $fs/etc
45 cp -a $src/rootfs/etc/polkit-1 $fs/etc ;;
46 esac
48 for i in images pixmaps themes webhome; do
49 cp -r $src/rootfs/usr/share/$i $fs/usr/share
50 done
52 cp -a $src/rootfs/root $fs
53 chown -R root.root $fs
54 chmod 0750 $fs/root
55 }