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

Up: slitaz-boot-scripts (5.7.1)
author Aleksej Bobylev <al.bobylev@gmail.com>
date Wed Mar 25 00:32:22 2015 +0200 (2015-03-25)
parents 5356d06e9b27
children 6470039b3800
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-boot-scripts"
4 VERSION="5.7.1"
5 CATEGORY="base-system"
6 SHORT_DESC="Provide all the initialisation scripts used at boot time."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL3"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.slitaz.org/"
11 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz"
12 HOST_ARCH="i486 arm"
14 CONFIG_FILES="
15 /etc/inittab
16 /etc/init.d/local.sh
17 /etc/rcS.conf
18 /etc/network.conf"
20 # Needed to fetch the keymaps and test the filesystem.
21 DEPENDS="kbd-base e2fsprogs busybox"
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 #
25 # This package is all build by genpkg, it provide the boot scripts found
26 # in /etc/init.d with the main config file : /etc/rcS.conf. It provide also
27 # the default inittab and the network config file used with network.sh
28 #
29 genpkg_rules()
30 {
31 cp -a $src/etc $fs
32 cp -a $src/usr $fs
33 cp -a $src/init $fs
35 chown -R root.root $fs
36 chmod 755 $fs/etc/init.d/*.sh
37 chmod 755 $fs/etc/init.d/rc*
38 chmod 755 $fs/init
40 case "$ARCH" in
41 arm*)
42 # Provided by slitaz-arm-configs
43 rm \
44 $fs/etc/rcS.conf \
45 $fs/etc/inittab \
46 $fs/etc/init.d/rcS \
47 $fs/etc/init.d/rc.shutdown \
48 $fs/etc/init.d/system.sh ;;
49 esac
50 }
52 # Post install commands.
53 #
54 post_install()
55 {
56 case "$SLITAZ_ARCH" in
57 i?86) chroot $1/ /usr/bin/rcSconf up ;;
58 arm) if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then
59 spk-add slitaz-arm-configs
60 fi ;;
61 esac
62 }