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

Up SliTaz projects: cookutils(863), slitaz-base-files(319), slitaz-boot-scripts(436), slitaz-configs(299), slitaz-tools(1008), ssfs(108), tazbug(94), tazinst(86), tazirc(18), tazlito(445), tazpanel(610), tazpkg(932), tazusb(194), tazweb(174).
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Jan 10 14:28:40 2017 +0200 (2017-01-10)
parents 7c03236e1044
children faf865f8822c
line source
1 # SliTaz package receipt.
3 PACKAGE="slitaz-boot-scripts"
4 VERSION="436"
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 }