core/sysvinit/Pkgfile
Tilman Sauerbeck cdaa387d44 sysvinit: use execle() instead of execl().
The caller wants to set the environment, so we need to use execle().
2010-07-23 17:05:57 +02:00

21 lines
545 B
Plaintext

# Description: The Linux System V Init
# URL: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=sysvinit
version=2.86
release=6
source=(ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/$name-$version.tar.gz \
$name-$version.patch)
build() {
cd $name-$version
patch -p1 < ../$name-$version.patch
make -C src
make -C src ROOT=$PKG install
mkdir -p $PKG/var/log
touch $PKG/var/log/wtmp
touch $PKG/var/log/btmp
chmod 0600 $PKG/var/log/btmp
}