this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Second release candidate for 4.08.1, without safe strings by default"
4maintainer: [
5 "David Allsopp <david@tarides.com>"
6 "Florian Angeletti <florian.angeletti@inria.fr>"
7]
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"
12depends: [
13 "ocaml" {= "4.08.1" & post}
14 "base-unix" {post}
15 "base-bigarray" {post}
16 "base-threads" {post}
17 "ocaml-beta"
18]
19conflict-class: "ocaml-core-compiler"
20flags: compiler
21setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
22build: [
23 ["./configure" "--prefix=%{prefix}%" "DEFAULT_STRING=unsafe"]
24 {os != "openbsd" & os != "freebsd" & os != "macos"}
25 [
26 "./configure"
27 "--prefix=%{prefix}%"
28 "CC=cc"
29 "ASPP=cc -c"
30 "DEFAULT_STRING=unsafe"
31 ] {os = "openbsd" | os = "freebsd" | os = "macos"}
32 [make "-j%{jobs}%" {os != "cygwin"} "world"]
33 [make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
34]
35install: [make "install"]
36url {
37 src: "https://github.com/ocaml/ocaml/archive/4.08.1+rc2.tar.gz"
38 checksum: [
39 "sha256=e3c04163e548d89a6aa053a6f6be88426a9a492a256fab60b672e26fb8e6f235"
40 "md5=363fb0731eaf6874ff5532da272db16d"
41 ]
42}
43post-messages: [
44 "A failure in the middle of the build may be caused by build parallelism
45 (enabled by default).
46 Please file a bug report at https://github.com/ocaml/opam-repository/issues"
47 {failure & jobs > 1 & os != "cygwin"}
48 "You can try installing again including --jobs=1
49 to force a sequential build instead."
50 {failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
51]
52available: !(os = "macos" & arch = "arm64" | os = "win32")
53x-maintained: false