summaryrefslogtreecommitdiff
path: root/repo/system/sysvinit.xibuild
blob: 3c3b76c5ed96f3ac44b930686423fc06f6c44da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

DEPS=(sh glibc)

PKG_VER=3.01
SOURCE=http://download.savannah.nongnu.org/releases/sysvinit/sysvinit-$PKG_VER.tar.xz
DESC="The sysvinit system for controlling startup, running and shutdown of the system"

prepare () {
    curl https://www.linuxfromscratch.org/patches/lfs/development/sysvinit-$PKG_VER-consolidated-1.patch > sysvinit-$PKG_VER-consolidated-1.patch
    patch -Np1 -i sysvinit-$PKG_VER-consolidated-1.patch
}
build () {
    make
}

package () {
    make ROOT=$PKG_DEST install 
}