view core/rc/rc.sh @ 1019:ddab65a5b3f5

vanilla: use /bin/busybox sh as default shell
author David Demelier <markand@malikania.fr>
date Thu, 29 Aug 2019 23:35:00 +0200
parents 58211c615a8c
children 297b5eef115e
line wrap: on
line source

#!/bin/busybox sh
#
# Copyright (c) 2019 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

PKGNAME=rc
PKGVERSION=0.2
PKGREVISION=1
PKGLICENSE="ISC"
PKGSUMMARY="Vanilla Linux init scripts"
PKGPROTECT="etc/rc.conf
            etc/rc.init
            etc/rc.shutdown
            etc/rc.start"

build()
{
	install -Dm0755 rc.conf $DESTDIR/etc/rc.conf
	install -Dm0755 rc.init $DESTDIR/etc/rc.init
	install -Dm0755 rc.shutdown $DESTDIR/etc/rc.shutdown
	install -Dm0755 rc.start $DESTDIR/etc/rc.start
	install -Dm0755 rc.networking $DESTDIR/etc/rc.networking
	install -Dm0755 rc.conf.5 $DESTDIR/share/man/man5/rc.conf.5
	install -Dm0755 rc.7 $DESTDIR/share/man/man7/rc.7
}