Skip to content
Permalink
3e764aeff1
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 44 lines (34 sloc) 904 Bytes
#!/bin/env beesh
PGRP=( core )
SRCURL[0]="http://ftp.twaren.net/Unix/NonGNU/sysvinit/sysvinit-2.88dsf.tar.bz2"
PATCHES[0]=""
# EXCLUDE=""
B=${S}
mee_patch() {
bee_patch
sed -i 's@Sending processes@& configured via /etc/inittab@g' \
src/init.c
sed -i -e 's/utmpdump wall/utmpdump/' \
-e 's/mountpoint.1 wall.1/mountpoint.1/' src/Makefile
}
mee_configure() {
true
}
mee_build() {
bee_build -C src
}
mee_install() {
bee_install ROOT=${D} -C src install
rm ${D}/bin/mountpoint
rm ${D}/sbin/sulogin
rm ${D}/usr/bin/last
rm ${D}/usr/bin/lastb
rm ${D}/usr/bin/mesg
rm ${D}/usr/bin/utmpdump
rm ${D}/usr/share/man/man1/last.1
rm ${D}/usr/share/man/man1/lastb.1
rm ${D}/usr/share/man/man1/mesg.1
rm ${D}/usr/share/man/man1/utmpdump.1
rm ${D}/usr/share/man/man1/mountpoint.1
rm ${D}/usr/share/man/man8/sulogin.8
}