contrib/rc_nobash/Pkgfile
2006-11-13 21:12:21 +01:00

38 lines
919 B
Plaintext

# Packager: Per Lidén <per@fukt.bth.se>
# Maintainer: Han Boetes <han@mijncomputer.nl>
# Description: initscripts for Crux linux
# URL: http://crux.nu
name=rc
version=2.18
release=4
source="
inittab
rc
rc.conf
rc.local
rc.modules
rc.multi
rc.rescue
rc.shutdown
rc.single
rc.dev
service
"
build()
{
install -d $PKG/{etc/rc.d,sbin}
install -m 644 inittab $PKG/etc
install -m 644 rc.conf $PKG/etc
install -m 644 rc.local $PKG/etc
install -m 644 rc.modules $PKG/etc
install -m 644 rc.dev $PKG/etc
install -m 755 rc $PKG/etc
install -m 755 rc.multi $PKG/etc
install -m 755 rc.rescue $PKG/etc
install -m 755 rc.shutdown $PKG/etc
install -m 755 rc.single $PKG/etc
install -m 755 service $PKG/sbin/service
}