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