wok view slitaz-boot-scripts/receipt @ rev 561

Up: slitaz-hacker (1.2) - Remove gtkrc desktop file and dep on lxappearance
author Christophe Lincoln <pankso@slitaz.org>
date Sat Apr 12 22:44:30 2008 +0200 (2008-04-12)
parents c6f1214bc043
children 47b8c1a37fdd
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-boot-scripts"
4 VERSION="1.8.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Provide all the initialisation scripts used at boot time."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.slitaz.org/"
10 WGET_URL="http://download.tuxfamily.org/slitaz/sources/boot-scripts/$TARBALL"
12 # Rules to gen a SliTaz package suitable for Tazpkg.
13 #
14 # This package is all build by genpkg, it provide the boot scripts found
15 # in /etc/init.d with the main config file : /etc/rcS.conf. It provide also
16 # the default inittab and the network config file used with network.sh
17 #
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/share
21 cp -a $src/etc $fs
22 cp -a $src/applications $fs/usr/share
24 # Perms
25 chown -R root.root $fs/etc/init.d
26 chmod 755 $fs/etc/init.d/*.sh
27 chmod 755 $fs/etc/init.d/rc*
28 }
30 # Pre install commands.
31 #
32 pre_install()
33 {
34 local root
35 root=$1
37 # Remove motd to be rebuils by /etc/init.d/i18n.sh in
38 # the right language.
39 rm -f $root/etc/motd
41 # Backup file to restore with post install
42 echo "Creating backups of configs..."
43 cp $root/etc/rcS.conf $root/etc/rcS.conf.bak 2>/dev/null
44 cp $root/etc/network.conf $root/etc/network.conf.bak 2>/dev/null
45 cp $root/etc/inittab $root/etc/inittab.bak 2>/dev/null
46 cp $root/etc/init.d/local.sh $root/etc/init.d/local.sh.bak 2>/dev/null
47 }
49 post_install()
50 {
51 local root
52 root=$1
53 echo "Restoring configs backups..."
54 mv -f $root/etc/rcS.conf.bak $root/etc/rcS.conf 2>/dev/null
55 mv -f $root/etc/network.conf.bak $root/etc/network.conf 2>/dev/null
56 mv -f $root/etc/inittab.bak $root/etc/inittab 2>/dev/null
57 mv -f $root/etc/init.d/local.sh.bak $root/etc/init.d/local.sh 2>/dev/null
58 }