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

DEPS=(sh glibc)

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

build () {
    curl https://www.linuxfromscratch.org/patches/lfs/development/sysvinit-3.01-consolidated-1.patch > sysvinit-3.0.1-consolidated-1.patch
    patch -Np1 -i ysvinit-3.01-consolidated-1.patch

    make
    make ROOT=$PKG_DEST install 
}