this repo has no description
1opam-version: "2.0"
2synopsis: "MetaOCaml 3.09 alpha 030"
3maintainer: "David Allsopp <david@tarides.com>"
4depends: [
5 "ocaml" {= "3.09.1" & post}
6 "base-unix" {post}
7 "base-bigarray" {post}
8 "base-threads" {post}
9]
10conflict-class: "ocaml-core-compiler"
11flags: compiler
12setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
13build: [
14 [
15 "sed"
16 "-ib"
17 "-e"
18 "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/"
19 "config/auto-aux/hasgot"
20 ] {os = "macos"}
21 ["./configure" "-prefix" prefix]
22 {os != "openbsd" & os != "freebsd" & os != "macos"}
23 ["./configure" "-prefix" prefix "-cc" "cc" "-aspp" "cc -c"]
24 {os = "openbsd" | os = "freebsd" | os = "macos"}
25 [make "world"]
26]
27install: [
28 [make "install"]
29 ["mkdir" "-p" "%{prefix}%/lib/ocaml/compiler-libs"]
30 ["cp" "-r" "typing" "parsing" "utils" "%{prefix}%/lib/ocaml/compiler-libs/"]
31]
32url {
33 src:
34 "https://github.com/metaocaml/metaocaml-archive/blob/master/MetaOCaml_309_alpha_030.tar.gz?raw=true"
35 checksum: [
36 "sha256=cd95a199d0edfe7e624f6690cd706e63eb142276f8f846c4f26739fe815d2f56"
37 "md5=28fca7ec424a1fd9fcdcf89fa2929f2a"
38 ]
39}
40available: !(os = "macos" & arch = "arm64")
41license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
42authors: [
43 "Xavier Leroy"
44 "Damien Doligez"
45 "Alain Frisch"
46 "Jacques Garrigue"
47 "Didier Rémy"
48 "Jérôme Vouillon"
49]
50bug-reports: "https://github.com/ocaml/opam-repository/issues"
51homepage: "https://ocaml.org"
52dev-repo: "git+https://github.com/ocaml/ocaml.git#3.09"
53patches: ["alt-signal-stack.patch"]
54extra-source "alt-signal-stack.patch" {
55 src:
56 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-base-compiler/alt-signal-stack.patch.3.09.1"
57 checksum: [
58 "sha256=8ea62f959faf2775ea7f11881a50c53c9f043c755a94e5659ea97e975334b7fb"
59 "md5=f0fe444ea7afc5ef5d9e55412d6c1d3d"
60 ]
61}