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

slitaz-boot-scripts (424), slitaz-tools (966), tazpanel (567), tazusb (184)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Feb 17 11:45:28 2016 +0100 (2016-02-17)
parents 984e868bf32b
children 9b7c1ea86466
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-boot-scripts"
4 VERSION="425"
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)
58 echo
59 chroot "$1/" /usr/bin/rcSconf up ;;
60 arm)
61 if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then
62 spk-add slitaz-arm-configs
63 fi ;;
64 esac
65 }