-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
52 lines (52 loc) · 1.73 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
opam-version: "2.0"
synopsis:
"Official release 4.08.1, compiled with musl-gcc -static and with flambda activated"
description:
"Requires musl-gcc to be installed (package musl on Arch Linux or musl-tools on Debian)"
maintainer: "[email protected]"
authors: "Xavier Leroy and many contributors"
homepage: "https://ocaml.org"
bug-reports: "https://github.com/ocaml/ocaml/issues"
dev-repo: "git://github.com/ocaml/ocaml"
depends: [
"ocaml" {= "4.08.1" & post}
"base-unix" {post}
"base-bigarray" {post}
"base-threads" {post}
]
depexts: [
["musl-tools"] {os-family = "debian"}
["musl"] {os-distribution = "archlinux"}
]
conflict-class: "ocaml-core-compiler"
flags: compiler
setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs"
build: [
["./configure" "--prefix=%{prefix}%"]
{os != "openbsd" & os != "freebsd" & os != "macos" & os != "linux"}
[
"./configure"
"--prefix=%{prefix}%"
"CC=x86_64-alpine-linux-musl-gcc -Os"
"ASPP=x86_64-alpine-linux-musl-gcc -c"
"--enable-flambda"
"LIBS=-static"
"--disable-graph-lib"
] {os = "openbsd" | os = "freebsd" | os = "macos" | os = "linux"}
[make "-j%{jobs}%" {os != "cygwin"} "world"]
[make "-j%{jobs}%" {os != "cygwin"} "world.opt"]
]
install: [make "install"]
url {
src: "https://github.com/ocaml/ocaml/archive/4.08.1.tar.gz"
checksum: "md5=723b6bfe8cf5abcbccc6911143f71055"
}
post-messages: [
"A failure in the middle of the build may be caused by build parallelism
(enabled by default).
Please file a bug report at https://github.com/ocaml/ocaml/issues"
{failure & jobs > 1 & os != "cygwin"}
"You can try installing again including --jobs=1
to force a sequential build instead."
{failure & jobs > 1 & os != "cygwin" & opam-version >= "2.0.5"}
]