this repo has no description
1opam-version: "2.0" 2synopsis: "Zeroth alpha release of OCaml 5.0.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#5.0" 12depends: [ 13 "ocaml" {= "5.0.0" & post} 14 "base-unix" {post} 15 "base-bigarray" {post} 16 "base-threads" {post} 17 "base-domains" {post} 18 "base-nnp" {post} 19 "ocaml-options-vanilla" {post} 20 "ocaml-beta" {opam-version < "2.1.0"} 21] 22conflicts: [ 23 "dune" {>= "3.4.0"} 24] 25conflict-class: "ocaml-core-compiler" 26flags: [ compiler avoid-version ] 27setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" 28build: [ 29 [ 30 "./configure" 31 "--prefix=%{prefix}%" 32 "--docdir=%{doc}%/ocaml" 33 "-C" 34 "CC=cc" {os = "openbsd" | os = "macos"} 35 "ASPP=cc -c" {os = "openbsd" | os = "macos"} 36 ] 37 [make "-j%{jobs}%"] 38] 39install: [make "install"] 40url { 41 src: "https://github.com/ocaml/ocaml/archive/5.0.0-alpha0.tar.gz" 42 checksum: "sha256=70f5353001ba95dff96f71680a435e1e7d3708eddb1fd8c74b9e18a292fe40ce" 43} 44post-messages: [ 45 "A failure in the middle of the build may be caused by build parallelism 46 (enabled by default). 47 Please file a bug report at https://github.com/ocaml/opam-repository/issues" 48 {failure & jobs > 1} 49 "You can try installing again including --jobs=1 50 to force a sequential build instead." 51 {failure & jobs > 1 & opam-version >= "2.0.5"} 52] 53available: os != "win32" 54extra-source "ocaml-base-compiler.install" { 55 src: 56 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-base-compiler/ocaml-base-compiler.install" 57 checksum: [ 58 "sha256=79f2a1a5044a91350a0eb6ce12e261a72a2855c094c425cddf3860e58c486678" 59 "md5=3e969b841df1f51ca448e6e6295cb451" 60 ] 61} 62x-maintained: false