wok-current annotate slitaz-boot-scripts/receipt @ rev 18499
Up libfm, libfm-gtk
author | Xander Ziiryanoff <psychomaniak@xakep.ru> |
---|---|
date | Tue Oct 13 19:56:52 2015 +0200 (2015-10-13) |
parents | 66c86e762be9 |
children | 07285fa0ddec |
rev | line source |
---|---|
pankso@16 | 1 # SliTaz package receipt. |
pankso@16 | 2 |
pankso@16 | 3 PACKAGE="slitaz-boot-scripts" |
pascal@18315 | 4 VERSION="412" |
pankso@178 | 5 CATEGORY="base-system" |
pankso@16 | 6 SHORT_DESC="Provide all the initialisation scripts used at boot time." |
pankso@16 | 7 MAINTAINER="pankso@slitaz.org" |
pascal@15021 | 8 LICENSE="GPL3" |
gokhlayeh@8012 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@16 | 10 WEB_SITE="http://www.slitaz.org/" |
pascal@12224 | 11 WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz" |
pankso@12880 | 12 HOST_ARCH="i486 arm" |
pankso@12880 | 13 |
pankso@16424 | 14 CONFIG_FILES=" |
al@17832 | 15 /etc/inittab |
pankso@16424 | 16 /etc/init.d/local.sh |
pankso@16424 | 17 /etc/rcS.conf |
pankso@16424 | 18 /etc/network.conf" |
pankso@16 | 19 |
pankso@12161 | 20 # Needed to fetch the keymaps and test the filesystem. |
pascal@17511 | 21 DEPENDS="kbd-base e2fsprogs busybox" |
pankso@12161 | 22 |
pankso@16 | 23 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@16 | 24 # |
pankso@16 | 25 # This package is all build by genpkg, it provide the boot scripts found |
pankso@16 | 26 # in /etc/init.d with the main config file : /etc/rcS.conf. It provide also |
pankso@16 | 27 # the default inittab and the network config file used with network.sh |
pankso@16 | 28 # |
pankso@16 | 29 genpkg_rules() |
pankso@16 | 30 { |
pankso@16 | 31 cp -a $src/etc $fs |
al@17832 | 32 cp -a $src/usr $fs |
pascal@11620 | 33 cp -a $src/init $fs |
psychomaniak@18317 | 34 sed 's/slim.confi/slim.conf/' -i $fs/etc/init.d/bootopts.sh |
pankso@806 | 35 |
pankso@2787 | 36 chown -R root.root $fs |
pankso@16 | 37 chmod 755 $fs/etc/init.d/*.sh |
pankso@16 | 38 chmod 755 $fs/etc/init.d/rc* |
pascal@11620 | 39 chmod 755 $fs/init |
al@17832 | 40 |
pankso@16424 | 41 case "$ARCH" in |
pankso@16424 | 42 arm*) |
pankso@16424 | 43 # Provided by slitaz-arm-configs |
pankso@16424 | 44 rm \ |
pankso@16424 | 45 $fs/etc/rcS.conf \ |
pankso@16424 | 46 $fs/etc/inittab \ |
pankso@16424 | 47 $fs/etc/init.d/rcS \ |
pankso@16425 | 48 $fs/etc/init.d/rc.shutdown \ |
pankso@16424 | 49 $fs/etc/init.d/system.sh ;; |
pankso@16424 | 50 esac |
pankso@16 | 51 } |
pankso@16 | 52 |
pankso@12977 | 53 # Post install commands. |
pankso@16 | 54 # |
pankso@16 | 55 post_install() |
pankso@16 | 56 { |
pankso@16424 | 57 case "$SLITAZ_ARCH" in |
mojo@17437 | 58 i?86) chroot $1/ /usr/bin/rcSconf up ;; |
mojo@17437 | 59 arm) if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then |
mojo@17437 | 60 spk-add slitaz-arm-configs |
mojo@17437 | 61 fi ;; |
pankso@16424 | 62 esac |
pankso@16 | 63 } |