this repo has no description
1opam-version: "2.0" 2synopsis: "First beta for 4.09.0, with frame pointers" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Florian Angeletti <florian.angeletti@inria.fr>" 6] 7authors: "Xavier Leroy and many contributors" 8homepage: "https://ocaml.org" 9bug-reports: "https://github.com/ocaml/opam-repository/issues" 10dev-repo: "git+https://github.com/ocaml/ocaml" 11depends: [ 12 "ocaml" {= "4.09.0" & post} 13 "base-unix" {post} 14 "base-bigarray" {post} 15 "base-threads" {post} 16 "ocaml-beta" 17] 18conflict-class: "ocaml-core-compiler" 19flags: compiler 20setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 21build: [ 22 [ 23 "./configure" 24 "--prefix=%{prefix}%" 25 "--enable-frame-pointers" 26 ] {os != "openbsd" & os != "freebsd" & os != "macos"} 27 [ 28 "./configure" 29 "--prefix=%{prefix}%" 30 "--enable-frame-pointers" 31 "CC=cc" 32 "ASPP=cc -c" 33 ] {os = "openbsd" | os = "freebsd" | os = "macos"} 34 [make "-j%{jobs}%" {os != "cygwin"} "world"] 35 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"] 36] 37install: [make "install"] 38url { 39 src: "https://github.com/ocaml/ocaml/archive/4.09.0+beta1.tar.gz" 40 checksum: [ 41 "sha256=8aba775f27d5a21477da6f70949595bc0d4dfed0e8d56ebac8a2a33a2575e421" 42 "md5=63b43a29c9e6b39c859ac5ca6d0eb7aa" 43 ] 44} 45post-messages: [ 46 "A failure in the middle of the build may be caused by build parallelism 47 (enabled by default). 48 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 49 {failure & jobs > 1 & os != "cygwin"} 50 "You can try installing again including --jobs=1 51 to force a sequential build instead." 52 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"} 53] 54available: os = "linux" & arch = "x86_64" 55x-maintained: false