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