this repo has no description
1opam-version: "2.0" 2synopsis: 3 "Third 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+rc3.tar.gz" 38 checksum: [ 39 "sha256=2f1a1c829f4547dcb6e7e78999861e438dd2a7825990b56cae02e6a3d8c08157" 40 "md5=fffb56d2c4e228492dcfb7f018184c53" 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