ocaml-fpath (3058B)
1 #!/usr/bin/env pthbs-build 2 #+busybox.539513a18a06a21e4660004fea30f3658959c5c7f54488b66b5fee7120b0c27c 3 #+busybox-findutils.3ba95afbbde5f39d6a3c0b17d82ff2e5350904cf19dd40acdf1c60ed126d3bda 4 #+busybox-awk.4ac003d165540d0084cd08c1386f136343851ef344ac5ff844769b058049d859 5 #+busybox-diffutils.b820ef7a40bea977a2bf740425ae15b2d9a21097bcf3a2f5ec77c21782b9deb8 6 #+musl-cross-make.ef7f483eefcad5b8f2d6c8329e61a0acaca7864b88e9521cb839392c62f45676 7 #+ocaml.4ba185dd68257d664e10ef27e557636e8abb7a415a49a8137175a33e7b7ccf7d 8 #+ocaml-findlib.f61deca1ebde2fc9058ec2a4f49227ff7b440a538cc38c214512d7ac047770d6 9 #+ocamlbuild.e608ac3d2b9cbd740bfc247ce47c6ec1219cbfe43e63443754729412c27d6a13 10 #+opam.28e65f08040269b1af9630ac7fc9e2e0ee94b1072be464b563a58b3bdfe71b9d 11 #+ocaml-topkg.1184b16caecfa8c95f12f6a99f564cc0d562dc6d4e118d14220f7927d1a51eaf 12 #+ocaml-astring.3124c86e5645cf683380537a6d6faed8c661f5a37ff2b93e01753e38997dd145 13 #@untar:-j:sha256:12b08ff192d037d9b6d69e9ca19d1d385184f20b3237c27231e437ac81ace70f:. 14 15 16 # - build script start - 17 18 prefix=/versions/$pthbs_package 19 dest=${pthbs_destdir%/}${prefix} 20 cd 'fpath-0.7.3' 21 22 23 24 ocaml -I "$OCAMLPATH" pkg/pkg.ml build 25 26 27 opam-installer -i \ 28 --prefix="$dest" \ 29 --libdir="$dest/library.ocaml" \ 30 --mandir="$dest/man" \ 31 --docdir="$dest/doc/ocaml-fpath" 32 33 34 35 36 37 cd "$pthbs_destdir/versions/$pthbs_package" 38 find -type d -o -print | awk -F/ ' 39 BEGIN { 40 41 x["./library.ocaml/fpath/META"]=1 42 x["./library.ocaml/fpath/fpath.a"]=1 43 x["./library.ocaml/fpath/fpath.cma"]=1 44 x["./library.ocaml/fpath/fpath.cmi"]=1 45 x["./library.ocaml/fpath/fpath.cmti"]=1 46 x["./library.ocaml/fpath/fpath.cmx"]=1 47 x["./library.ocaml/fpath/fpath.cmxa"]=1 48 x["./library.ocaml/fpath/fpath.mli"]=1 49 } 50 51 function r1(s) { 52 sub("^[.]/[^/]*", ".", s) 53 return s 54 } 55 function s1(repl, s) { 56 sub("^[.]/[^/]*", "./"repl, s) 57 return s 58 } 59 function link(src) { 60 x[$0]=0 61 printf "%s\t%s\n", $0, src 62 printf "genlinks >>%s\t%s<<\n", $0, src >>"/dev/stderr" 63 } 64 $1!="."{exit 1} 65 66 67 $2 == "library.ocaml" { link($0); next } 68 69 $2 == "config" { link($0); next } 70 $2 == "keys" { link($0); next } 71 $2 == "zsh" { link($0); next } 72 $2 == "env" { link($0); next } 73 $2 == "command" { link($0); next } 74 $2 == "bin" { link(s1("command", $0)); next } 75 76 $2 == "library.so" { link($0); next } 77 $2 == "library" { link($0); next } 78 $2 == "lib" && $NF ~ /\.l?a$/ { link(s1("library", $0)); next } 79 $2 == "lib" && $NF ~ /\.so(\..*)?$/ { link(s1("library.so", $0)); next } 80 81 $2 == "share" && $3 ~ /^(info|man|doc|icons|terminfo)$/ { link(r1($0)); next } 82 83 $2 == "man" { link($0); next } 84 $2 == "info" { link($0); next } 85 $2 == "doc" { link($0); next } 86 $2 == "icons" { link($0); next } 87 $2 == "terminfo" { link($0); next } 88 $2 == "data" { link($0); next } 89 $2 == "include" { link($0); next } 90 91 { printf "genlinks ##%s## skipped\n", $0 >>"/dev/stderr" } 92 93 END { 94 for(fname in x) { printf "DEBUG: x[\"%s\"]=\"%s\"\n", fname, x[fname] >"/dev/stderr" } 95 for(fname in x) { 96 if(x[fname]) { 97 printf "ERROR: missing expected file \"%s\"\n", fname >"/dev/stderr" 98 exit 3 99 } 100 } 101 }' >.install-links.new 102 mv .install-links.new .install-links 103