From 8cacb07a4048b2b2d50a9a0fc124d45f38eefd96 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Fri, 15 May 2020 21:07:31 +0300 Subject: runit: portable install calls --- core/runit/build | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'core/runit') diff --git a/core/runit/build b/core/runit/build index 9b848bf9..2176daa1 100755 --- a/core/runit/build +++ b/core/runit/build @@ -1,7 +1,12 @@ #!/bin/sh -e -for patch in ./*.patch ; do patch -p0 < "$patch" ; done -cd runit-2.1.2 +read -r version _ < "${0%/*}/version" + +for patch in ./*.patch ; do + patch -p0 < "$patch" +done + +cd "runit-$version" ( cd src @@ -13,10 +18,23 @@ cd runit-2.1.2 make - install -Dm755 -t "$1/usr/bin/" chpst runit runit-init runsv runsvchdir runsvdir sv svlogd utmpset + for bin in \ + chpst \ + runit \ + runit-init \ + runsv \ + runsvchdir \ + runsvdir \ + sv \ + svlogd \ + utmpset + do install -Dm755 "$bin" "$1/usr/bin/$bin"; done + ) -install -Dm644 -t "$1/usr/share/man/man8" man/* +for man in man/man*; do + install -Dm644 "$man" "$1/usr/share/man/man8/${man#man/}" +done mkdir -p "$1/var/service" "$1/etc/runit" ln -s runit-init "$1/usr/bin/init" @@ -24,4 +42,5 @@ ln -s /usr/lib/init/rc.boot "$1/etc/runit/1" ln -s /usr/lib/init/rc.shutdown "$1/etc/runit/3" install -Dm755 ../2 "$1/etc/runit/2" -install -Dm755 -t "$1/usr/bin" ../poweroff ../reboot +install -Dm755 ../poweroff "$1/usr/bin/poweroff" +install -Dm755 ../reboot "$1/usr/bin/reboot" -- cgit v1.2.3