diff options
Diffstat (limited to 'repo/system/s6-linux-init.xibuild')
-rw-r--r-- | repo/system/s6-linux-init.xibuild | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/repo/system/s6-linux-init.xibuild b/repo/system/s6-linux-init.xibuild new file mode 100644 index 0000000..737aed3 --- /dev/null +++ b/repo/system/s6-linux-init.xibuild @@ -0,0 +1,26 @@ +#!/bin/sh + +MAKEDEPS="make" +DEPS="s6 skalibs" + +PKG_VER=1.0.7.0 +SOURCE=https://skarnet.org/software/s6-linux-init/s6-linux-init-$PKG_VER.tar.gz +DESC="Small suite of programs for UNIX, designed to allow process supervision" + +build () { + ./configure --enable-shared \ + --enable-static \ + --enable-nsss \ + --enable-allstatic \ + --enable-static-libc \ + --libdir=/usr/lib \ + --libexecdir=/usr/lib/s6-linux-init \ + --with-dynlib=/usr/lib \ + --enable-utmps ${OPARG} + + make +} + +package () { + make DESTDIR=$PKG_DEST install +} |