this repo has no description
1opam-version: "2.0"
2synopsis: "4.01.0 release compiled with musl-gcc"
3description:
4 "Requires musl-gcc to be installed (apt-get install musl-tools on Debian)"
5maintainer: "David Allsopp <david@tarides.com>"
6depends: [
7 "ocaml" {= "4.01.0" & post}
8 "base-unix" {post}
9 "base-bigarray" {post}
10 "base-threads" {post}
11 "base-ocamlbuild" {post}
12]
13conflict-class: "ocaml-core-compiler"
14flags: compiler
15setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
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 [
25 "./configure"
26 "-prefix"
27 prefix
28 "-with-debug-runtime"
29 "-cc"
30 "musl-gcc -Os"
31 "-aspp"
32 "musl-gcc -c"
33 "-no-tk"
34 "-no-curses"
35 "-no-graph"
36 ]
37 [make "world.opt"]
38]
39install: [make "install"]
40url {
41 src: "http://caml.inria.fr/pub/distrib/ocaml-4.01/ocaml-4.01.0.tar.gz"
42 checksum: [
43 "sha256=ea1751deff454f5c738d10d8a0ad135afee0852d391cf95766b726c0faf7cfdb"
44 "md5=04dfdd7da189462a4f10ec6530359cef"
45 ]
46}
47available: !(os = "macos" & arch = "arm64")
48license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
49authors: [
50 "Xavier Leroy"
51 "Damien Doligez"
52 "Alain Frisch"
53 "Jacques Garrigue"
54 "Didier Rémy"
55 "Jérôme Vouillon"
56]
57bug-reports: "https://github.com/ocaml/opam-repository/issues"
58homepage: "https://ocaml.org"
59dev-repo: "git+https://github.com/ocaml/ocaml.git#4.01"
60patches: ["alt-signal-stack.patch"]
61extra-source "alt-signal-stack.patch" {
62 src: "https://github.com/ocaml/ocaml/commit/d111407bf4ff71171598d30825c8e59ed5f75fd6.patch?full_index=1"
63 checksum: "sha256=cadeb58478a5ca998fdfa54dc99fbb31235a0ce7689a740338a8fdb391e9b436"
64}