summaryrefslogtreecommitdiff
path: root/repo/system/sysvinit.xibuild
diff options
context:
space:
mode:
Diffstat (limited to 'repo/system/sysvinit.xibuild')
-rw-r--r--repo/system/sysvinit.xibuild25
1 files changed, 25 insertions, 0 deletions
diff --git a/repo/system/sysvinit.xibuild b/repo/system/sysvinit.xibuild
new file mode 100644
index 0000000..f585b61
--- /dev/null
+++ b/repo/system/sysvinit.xibuild
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+MAKEDEPS="make patch"
+DEPS="sh musl"
+
+PKG_VER=3.01
+SOURCE=http://download.savannah.nongnu.org/releases/sysvinit/sysvinit-$PKG_VER.tar.xz
+ADDITIONAL="
+ https://www.linuxfromscratch.org/patches/lfs/development/sysvinit-$PKG_VER-consolidated-1.patch
+ "
+
+DESC="The sysvinit system for controlling startup, running and shutdown of the system"
+
+
+prepare () {
+ patch -Np1 -i sysvinit-$PKG_VER-consolidated-1.patch
+}
+
+build () {
+ make
+}
+
+package () {
+ make ROOT=$PKG_DEST install
+}