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