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