blob: 0b3e7778dfc4039a35f69095f67e1ba43bc308e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
description="The Linux System V Init."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="https://savannah.nongnu.org/projects/sysvinit/"
depends=()
# FIXME: Replace that crappy damned awfull init system by something cool.
name=sysvinit
version=2.88
release=1
source=(http://download.savannah.gnu.org/releases/$name/$name-${version}dsf.tar.bz2)
build ()
{
cd $name-${version}dsf;
make;
make ROOT=$PKG MANDIR=$mandir install;
install -d $PKG/var/log;
touch $PKG/var/log/wtmp;
touch $PKG/var/log/btmp;
chmod 0600 $PKG/var/log/btmp
}
|