this repo has no description
1opam-version: "2.0" 2synopsis: "First beta release of OCaml 4.14.0" 3maintainer: [ 4 "David Allsopp <david@tarides.com>" 5 "Florian Angeletti <florian.angeletti@inria.fr>" 6] 7license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 8authors: "Xavier Leroy and many contributors" 9homepage: "https://ocaml.org" 10bug-reports: "https://github.com/ocaml/opam-repository/issues" 11dev-repo: "git+https://github.com/ocaml/ocaml#4.14" 12depends: [ 13 "ocaml" {= "4.14.0" & post} 14 "base-unix" {post} 15 "base-bigarray" {post} 16 "base-threads" {post} 17 "ocaml-options-vanilla" {post} 18 "ocaml-beta" {opam-version < "2.1.0"} 19] 20conflict-class: "ocaml-core-compiler" 21flags: [ compiler avoid-version ] 22setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 23build: [ 24 [ 25 "./configure" 26 "--prefix=%{prefix}%" 27 "--docdir=%{doc}%/ocaml" 28 "-C" 29 "CC=cc" {os = "openbsd" | os = "macos"} 30 "ASPP=cc -c" {os = "openbsd" | os = "macos"} 31 ] 32 [make "-j%{jobs}%"] 33] 34install: [make "install"] 35url { 36 src: "https://github.com/ocaml/ocaml/archive/4.14.0-beta1.tar.gz" 37 checksum: "sha256=1b02000867fd20af59c2afa1eda411d064f02cf96227f7f3e07fbeb5492abe95" 38} 39post-messages: [ 40 "A failure in the middle of the build may be caused by build parallelism 41 (enabled by default). 42 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 43 {failure & jobs > 1} 44 "You can try installing again including --jobs=1 45 to force a sequential build instead." 46 {failure & jobs > 1 & opam-version >= "2.0.5"} 47] 48available: os != "win32" 49extra-source "ocaml-base-compiler.install" { 50 src: 51 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-base-compiler/ocaml-base-compiler.install" 52 checksum: [ 53 "sha256=79f2a1a5044a91350a0eb6ce12e261a72a2855c094c425cddf3860e58c486678" 54 "md5=3e969b841df1f51ca448e6e6295cb451" 55 ] 56} 57x-maintained: false