opam-version: "2.0" license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" synopsis: "Official release of OCaml 4.13.1" maintainer: [ "David Allsopp " "Florian Angeletti " ] authors: ["Xavier Leroy" "Damien Doligez" "Alain Frisch" "Jacques Garrigue" "Didier Rémy" "Jérôme Vouillon"] homepage: "https://ocaml.org" bug-reports: "https://github.com/ocaml/opam-repository/issues" dev-repo: "git+https://github.com/ocaml/ocaml.git#4.13" depends: [ # This is OCaml 4.13.1 "ocaml" {= "4.13.1" & post} # General base- packages "base-unix" {post} "base-bigarray" {post} "base-threads" {post} # Port selection (Windows) # amd64 mingw-w64 / MSVC (("arch-x86_64" {os = "win32" & arch = "x86_64"} & (("system-mingw" & "mingw-w64-shims" {os-distribution = "cygwin" & post}) | "system-msvc")) | # i686 mingw-w64 / MSVC ("arch-x86_32" {os = "win32"} & (("system-mingw" & "mingw-w64-shims" {os-distribution = "cygwin" & post}) | "system-msvc")) | # Non-Windows systems need to install something to satisfy this formula, so # repeat the base-unix dependency "base-unix" {os != "win32" & post}) # Support Packages "flexdll" {>= "0.36" & os = "win32"} ] conflict-class: "ocaml-core-compiler" flags: compiler build-env: MSYS2_ARG_CONV_EXCL = "*" setenv: CAML_LD_LIBRARY_PATH = "%{lib}%/stublibs" x-env-path-rewrite: [ [CAML_LD_LIBRARY_PATH (";" {os = "win32"} ":" {os != "win32"}) "target"] ] build: [ [ "./configure" "--host=x86_64-pc-windows" {system-msvc:installed & arch-x86_64:installed} "--host=x86_64-w64-mingw32" {os-distribution = "cygwin" & system-mingw:installed & arch-x86_64:installed} "--host=i686-pc-windows" {system-msvc:installed & arch-x86_32:installed} "--host=i686-w64-mingw32" {os-distribution = "cygwin" & system-mingw:installed & arch-x86_32:installed} "--prefix=%{prefix}%" "--with-flexdll=%{flexdll:share}%" {os = "win32" & flexdll:installed} "-C" "--with-afl" {ocaml-option-afl:installed} "--disable-native-compiler" {ocaml-option-bytecode-only:installed} "--disable-force-safe-string" {ocaml-option-default-unsafe-string:installed} "DEFAULT_STRING=unsafe" {ocaml-option-default-unsafe-string:installed} "--disable-flat-float-array" {ocaml-option-no-flat-float-array:installed} "--enable-flambda" {ocaml-option-flambda:installed} "--enable-frame-pointers" {ocaml-option-fp:installed} "--disable-naked-pointers" {ocaml-option-nnp:installed} "--enable-naked-pointers-checker" {ocaml-option-nnpchecker:installed} "CC=cc" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} "CC=musl-gcc" {ocaml-option-musl:installed & os-distribution!="alpine"} "CFLAGS=-Os" {ocaml-option-musl:installed} "CC=gcc -m32" {ocaml-option-32bit:installed & os="linux"} "CC=gcc -Wl,-read_only_relocs,suppress -arch i386 -m32" {ocaml-option-32bit:installed & os="macos"} "ASPP=cc -c" {!ocaml-option-32bit:installed & !ocaml-option-musl:installed & (os="openbsd"|os="macos")} "ASPP=musl-gcc -c" {ocaml-option-musl:installed & os-distribution!="alpine"} "ASPP=gcc -m32 -c" {ocaml-option-32bit:installed & os="linux"} "ASPP=gcc -arch i386 -m32 -c" {ocaml-option-32bit:installed & os="macos"} "AS=as --32" {ocaml-option-32bit:installed & os="linux"} "AS=as -arch i386" {ocaml-option-32bit:installed & os="macos"} "--host=i386-linux" {ocaml-option-32bit:installed & os="linux"} "--host=i386-apple-darwin13.2.0" {ocaml-option-32bit:installed & os="macos"} "PARTIALLD=ld -r -melf_i386" {ocaml-option-32bit:installed & os="linux"} "LIBS=-static" {ocaml-option-static:installed} ] [make "-j%{jobs}%"] ] install: [make "install"] url { src: "https://github.com/ocaml/ocaml/archive/4.13.1.tar.gz" checksum: "sha256=194c7988cc1fd1c64f53f32f2f7551e5309e44d914d6efc7e2e4d002296aeac4" } 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/opam-repository/issues" {failure & jobs > 1} "You can try installing again including --jobs=1 to force a sequential build instead." {failure & jobs > 1 & opam-version >= "2.0.5"} ] depopts: [ "ocaml-option-32bit" "ocaml-option-afl" "ocaml-option-bytecode-only" "ocaml-option-default-unsafe-string" "ocaml-option-no-flat-float-array" "ocaml-option-flambda" "ocaml-option-fp" "ocaml-option-musl" "ocaml-option-static" "ocaml-option-nnp" "ocaml-option-nnpchecker" ] extra-source "ocaml-variants.install" { src: "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/ocaml-variants/ocaml-variants.install" checksum: [ "sha256=79f2a1a5044a91350a0eb6ce12e261a72a2855c094c425cddf3860e58c486678" "md5=3e969b841df1f51ca448e6e6295cb451" ] }