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

Add memtester
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Nov 10 15:03:57 2013 +0000 (2013-11-10)
parents 874b0d62ff7e
children 79f47d13ed26
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-configs-base"
4 VERSION="5.1.6"
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"
14 DEPENDS="tazlito tazpkg"
16 # Rules to gen a SliTaz package suitable for Tazpkg.
17 genpkg_rules()
18 {
19 # Copy rootfs files from the stuff and set permissions.
20 mkdir -p \
21 $fs/etc \
22 $fs/boot \
23 $fs/usr/share \
24 $fs/etc/skel/Music \
25 $fs/etc/skel/Documents
26 cp -a $src/rootfs/boot $fs
27 cp -a $src/rootfs/etc/skel $fs/etc
28 cp -a $src/rootfs/etc/X11 $fs/etc
30 for i in images pixmaps themes webhome; do
31 cp -r $src/rootfs/usr/share/$i $fs/usr/share
32 done
34 cp -a $src/rootfs/root $fs
35 chown -R root.root $fs
36 chmod 0750 $fs/root
37 }