this repo has no description
1opam-version: "2.0" 2synopsis: "Mirage compiler for xen" 3maintainer: "David Allsopp <david@tarides.com>" 4depends: [ 5 "ocaml" {= "4.00.1" & post} 6 "lwt" {post} 7 "ocamlfind" {post} 8 "xenbigarray" {post} 9] 10conflict-class: "ocaml-core-compiler" 11flags: compiler 12setenv: [ 13 [MIRAGE_OS = "xen"] 14 [MIRAGE_NET = "direct"] 15] 16build: [ 17 [ 18 "sed" 19 "-ib" 20 "-e" 21 "s/opts=\"\"/opts=\"-Wno-implicit-function-declaration\"/" 22 "config/auto-aux/hasgot" 23 ] {os = "macos"} 24 ["./configure" "-prefix" prefix] 25 {os != "openbsd" & os != "freebsd" & os != "macos"} 26 ["./configure" "-prefix" prefix "-cc" "cc" "-aspp" "cc -c"] 27 {os = "openbsd" | os = "freebsd" | os = "macos"} 28 [make "world"] 29 [make "world.opt"] 30] 31install: [ 32 [make "install"] 33 ["sh" "-c" "rm %{lib}%/ocaml/bigarray.*"] 34] 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}