# HG changeset patch # User Hans-G?nter Theisgen # Date 1686063125 -3600 # Node ID 1fe3be8c0cd0306829c993d63730d3124826a706 # Parent d154d1f5c98af10a784d3e2e5105cbb2decdb3b1 updated slitaz-boot-scripts (474 -> 475) diff -r d154d1f5c98a -r 1fe3be8c0cd0 slitaz-boot-scripts/receipt --- a/slitaz-boot-scripts/receipt Tue Jun 06 11:04:30 2023 +0000 +++ b/slitaz-boot-scripts/receipt Tue Jun 06 15:52:05 2023 +0100 @@ -1,13 +1,14 @@ # SliTaz package receipt. PACKAGE="slitaz-boot-scripts" -VERSION="474" +VERSION="475" CATEGORY="base-system" SHORT_DESC="Provide all the initialisation scripts used at boot time." MAINTAINER="pankso@slitaz.org" LICENSE="GPL3" +WEB_SITE="http://www.slitaz.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.slitaz.org/" WGET_URL="http://hg.slitaz.org/$PACKAGE/archive/$VERSION.tar.gz" HOST_ARCH="i486 arm" @@ -18,7 +19,7 @@ /etc/network.conf" # Needed to fetch the keymaps and test the filesystem. -DEPENDS="kbd-base e2fsprogs busybox slitaz-tools" +DEPENDS="busybox e2fsprogs kbd-base slitaz-tools" current_version() { @@ -29,20 +30,20 @@ # Rules to gen a SliTaz package suitable for Tazpkg. # -# This package is all build by genpkg, it provide the boot scripts found -# in /etc/init.d with the main config file : /etc/rcS.conf. It provide also -# the default inittab and the network config file used with network.sh +# This package is all build by genpkg, it provides the boot scripts to be found +# in /etc/init.d with the main configuration file: /etc/rcS.conf. It provides also +# the default inittab and the network configuration file used with network.sh # genpkg_rules() { - cp -a $src/etc $fs - cp -a $src/usr $fs - cp -a $src/init $fs + cp -a $src/etc $fs + cp -a $src/usr $fs + cp -a $src/init $fs - chown -R root.root $fs - chmod 755 $fs/etc/init.d/*.sh - chmod 755 $fs/etc/init.d/rc* - chmod 755 $fs/init + chown -R root.root $fs + chmod 755 $fs/etc/init.d/*.sh + chmod 755 $fs/etc/init.d/rc* + chmod 755 $fs/init case "$ARCH" in arm*) @@ -61,12 +62,15 @@ post_install() { case "$SLITAZ_ARCH" in - i?86) + (i?86) echo - chroot "$1/" /usr/bin/rcSconf up ;; - arm) - if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ]; then + chroot "$1/" /usr/bin/rcSconf up + ;; + (arm) + if [ ! -d "/var/lib/tazpkg/installed/slitaz-arm-configs" ] + then spk-add slitaz-arm-configs - fi ;; + fi + ;; esac }