this repo has no description
1opam-version: "2.0" 2synopsis: "BER-N111 MetaOCaml" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Jeremy Yallop <yallop@gmail.com>" 6] 7authors: [ 8 "Xavier Leroy" 9 "Damien Doligez" 10 "Alain Frisch" 11 "Jacques Garrigue" 12 "Didier Rémy" 13 "Jérôme Vouillon" 14 "Oleg Kiselyov" 15] 16bug-reports: "https://github.com/ocaml/opam-repository/issues" 17dev-repo: "git+https://github.com/metaocaml/ber-metaocaml.git#ber-n111" 18homepage: "http://okmij.org/ftp/ML/MetaOCaml.html" 19depends: [ 20 "ocaml" {= "4.11.1" & post} 21 "base-unix" {post} 22 "base-bigarray" {post} 23 "base-threads" {post} 24 "base-metaocaml-ocamlfind" {post} 25] 26conflict-class: "ocaml-core-compiler" 27flags: compiler 28setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 29build: [ 30 ["./configure" "-prefix" "%{prefix}%"] 31 {os != "openbsd" & os != "macos"} 32 ["./configure" "-prefix" "%{prefix}%" "CC=cc" "ASPP=cc -c"] 33 {os = "openbsd" | os = "macos"} 34 [make "world.opt"] 35 [make "-C" "ber-metaocaml-111" "all"] 36] 37install: [ 38 [make "-i" "install"] 39 [make "-C" "ber-metaocaml-111" "install" "install.opt"] 40] 41url { 42 src: "https://github.com/metaocaml/ber-metaocaml/archive/ber-n111.tar.gz" 43 checksum: [ 44 "sha256=7996a90098b4e91ccc07e7e6e8f3927fd378c5dc0a4ce9bed118fb49ada7573a" 45 "md5=3362d3bab70e662defc92d493effe5e1" 46 ] 47} 48post-messages: [ 49 "A failure in the middle of the build may be caused by build parallelism 50 (enabled by default). 51 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 52 {failure & jobs > 1} 53 "You can try installing again including --jobs=1 54 to force a sequential build instead." 55 {failure & jobs > 1 & opam-version >= "2.0.5"} 56] 57available: !(os = "macos" & arch = "arm64") 58patches: ["alt-signal-stack.patch"] 59extra-source "alt-signal-stack.patch" { 60 src: "https://github.com/ocaml/ocaml/commit/dd28ac0cf4365bd0ea1bcc374cbc5e95a6f39bea.patch?full_index=1" 61 checksum: "sha256=e94ff6043dbd47594599a7743b8e97080aef85a1541c5731c04494d19bdabaa7" 62}