s6-linux-init (2511B)
1 #!/usr/bin/env pthbs-build 2 #+musl-cross-make.757bcca6771cad3395ae302e0fdc835ebf5b4a965c08e30d758e6149b0bacbcd 3 #+gnu-make.529116171fecc2bdac7c70e109d28270d765379c8a52cf7c3ea7453195bbf42b 4 #+busybox.3664b94c09ea6d35ce73985026762c142829e53fed4a38541af3afb00c37dd4a 5 #+skalibs.52593fbe602918f8d5574ee69bb3a4927f8b23cf9d6441a54a054344425bc933 6 #+execline.e08da9de6042531591759e132214cca8c47afe474d7b7ee228261351057ac9b9 7 #+s6.945bdb6cddcddb0d41cf7dc1a816fe6350eec79b0f3e5d7726fe4d90ed7844be 8 #@git:af9c36d379c9c71c4111cc15545f0938cca8e68e:s6-linux-init 9 10 : ${JOBS:=1} 11 prefix=/versions/$pthbs_package 12 cd 's6-linux-init' 13 ./configure \ 14 --prefix="$prefix" \ 15 --dynlibdir="${prefix}/library.so" \ 16 --bindir="${prefix}/command" \ 17 --libdir="${prefix}/library" \ 18 --shebangdir="${prefix}/command" \ 19 --with-sysdeps='/versions/skalibs.52593fbe602918f8d5574ee69bb3a4927f8b23cf9d6441a54a054344425bc933/sysdeps' \ 20 --with-include="$pthbs_build_environment/include" \ 21 --with-lib="$pthbs_build_environment/library" \ 22 --with-dynlib="$pthbs_build_environment/library.so" \ 23 --disable-shared --enable-static --enable-allstatic --enable-static-libc --absolute-paths 24 25 make -j${JOBS:-1} -l$((1+${JOBS:-1})) 26 make DESTDIR="$pthbs_destdir" install 27 28 cd "$pthbs_destdir/versions/$pthbs_package" 29 find -type d -o -print | awk -F/ ' 30 BEGIN { 31 } 32 33 function r1(s) { 34 sub("^[.]/[^/]*", ".", s) 35 return s 36 } 37 function s1(repl, s) { 38 sub("^[.]/[^/]*", "./"repl, s) 39 return s 40 } 41 function link(src) { 42 x[$0]=0 43 printf "%s\t%s\n", $0, src 44 printf "genlinks >>%s\t%s<<\n", $0, src >>"/dev/stderr" 45 } 46 $1!="."{exit 1} 47 48 49 $2 == "command" { link($0); next } 50 $2 == "bin" { link(s1("command", $0)); next } 51 52 $2 == "library.so" { link($0); next } 53 $2 == "library" { link($0); next } 54 $2 == "lib" && $NF ~ /\.l?a$/ { link(s1("library", $0)); next } 55 $2 == "lib" && $NF ~ /\.so(|\..*)$/ { link(s1("library.so", $0)); next } 56 57 $2 == "share" && $3 ~ /^(info|man|doc|icons|terminfo)$/ { link(r1($0)); next } 58 59 $2 == "man" { link($0); next } 60 $2 == "info" { link($0); next } 61 $2 == "doc" { link($0); next } 62 $2 == "icons" { link($0); next } 63 $2 == "terminfo" { link($0); next } 64 $2 == "data" { link($0); next } 65 $2 == "include" { link($0); next } 66 67 { printf "genlinks ##%s## skipped\n", $0 >>"/dev/stderr" } 68 69 END { 70 for(fname in x) { printf "DEBUG: x[\"%s\"]=\"%s\"\n", fname, x[fname] >"/dev/stderr" } 71 for(fname in x) { 72 if(x[fname]) { 73 printf "ERROR: missing expected file \"%s\"\n", fname >"/dev/stderr" 74 exit 3 75 } 76 } 77 }' >.install-links.new 78 mv .install-links.new .install-links