this repo has no description
1opam-version: "2.0"
2synopsis: "First alpha release of OCaml 4.12.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" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"]
9homepage: "https://ocaml.org"
10bug-reports: "https://github.com/ocaml/opam-repository/issues"
11dev-repo: "git+https://github.com/ocaml/ocaml#4.12"
12depends: [
13 "ocaml" {= "4.12.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 "-C"
28 "CC=cc" {os = "openbsd" | os = "macos"}
29 "ASPP=cc -c" {os = "openbsd" | os = "macos"}
30 ]
31 [make "-j%{jobs}%" {os != "cygwin"}]
32]
33install: [make "install"]
34url {
35 src: "https://github.com/ocaml/ocaml/archive/4.12.0-alpha1.tar.gz"
36 checksum: "sha256=bee59cb94067410d02f0bc4e7e47e3e878689aabf61e6d2f0cb4316f8563e55d"
37}
38post-messages: [
39 "A failure in the middle of the build may be caused by build parallelism
40 (enabled by default).
41 Please file a bug report at https://github.com/ocaml/opam-repository/issues"
42 {failure & jobs > 1 & os != "cygwin"}
43 "You can try installing again including --jobs=1
44 to force a sequential build instead."
45 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
46]
47available: os != "win32"
48extra-source "ocaml-base-compiler.install" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-base-compiler/ocaml-base-compiler.install"
51 checksum: [
52 "sha256=79f2a1a5044a91350a0eb6ce12e261a72a2855c094c425cddf3860e58c486678"
53 "md5=3e969b841df1f51ca448e6e6295cb451"
54 ]
55}
56x-maintained: false