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