this repo has no description
1opam-version: "2.0" 2synopsis: "Mirage compiler for unix" 3maintainer: "David Allsopp <david@tarides.com>" 4depends: [ 5 "ocaml" {= "4.00.1" & post} 6 "base-unix" {post} 7 "base-threads" {post} 8 "base-ocamlbuild" {post} 9 "base-bigarray" {post} 10 "lwt" {post} 11 "ocamlfind" {post} 12] 13conflict-class: "ocaml-core-compiler" 14flags: compiler 15setenv: [ 16 [MIRAGE_OS = "unix"] 17 [MIRAGE_NET = "direct"] 18] 19build: [ 20 [ 21 "sed" 22 "-ib" 23 "-e" 24 "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/" 25 "config/auto-aux/hasgot" 26 ] {os = "macos"} 27 ["./configure" "-prefix" prefix] 28 {os != "openbsd" & os != "freebsd" & os != "macos"} 29 ["./configure" "-prefix" prefix "-cc" "cc" "-aspp" "cc -c"] 30 {os = "openbsd" | os = "freebsd" | os = "macos"} 31 [make "world"] 32 [make "world.opt"] 33] 34install: [make "install"] 35url { 36 src: "http://caml.inria.fr/pub/distrib/ocaml-4.00/ocaml-4.00.1.tar.gz" 37 checksum: [ 38 "sha256=b48d5c7d3bf4a0cd6125f8fdfc1f654dd65586087399dc9f14716d7b9535e87a" 39 "md5=91124a8eb12a57f1e56c02fe3db0f9e7" 40 ] 41} 42available: !(os = "macos" & arch = "arm64") 43license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 44authors: [ 45 "Xavier Leroy" 46 "Damien Doligez" 47 "Alain Frisch" 48 "Jacques Garrigue" 49 "Didier Rémy" 50 "Jérôme Vouillon" 51] 52bug-reports: "https://github.com/ocaml/opam-repository/issues" 53homepage: "https://ocaml.org" 54dev-repo: "git+https://github.com/ocaml/ocaml.git#4.00" 55patches: ["alt-signal-stack.patch"] 56extra-source "alt-signal-stack.patch" { 57 src: "https://github.com/ocaml/ocaml/commit/60b0cdaf2519d881947af4175ac4c6ff68901be3.patch?full_index=1" 58 checksum: "sha256=bb0e0e736ecc55c9f8cd8f74ca00a920bfe46e4200b82c5a45da952053b374da" 59}