this repo has no description
1opam-version: "2.0"
2synopsis:
3 "OCamlbuild is a build system with builtin rules to easily build most OCaml projects"
4maintainer: "Gabriel Scherer <gabriel.scherer@gmail.com>"
5authors: ["Nicolas Pouillard" "Berke Durak"]
6license: "LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception"
7homepage: "https://github.com/ocaml/ocamlbuild/"
8doc: "https://github.com/ocaml/ocamlbuild/blob/master/manual/manual.adoc"
9bug-reports: "https://github.com/ocaml/ocamlbuild/issues"
10depends: [
11 "ocaml" {>= "4.03" & < "5.1"}
12]
13conflicts: [
14 "base-ocamlbuild"
15 "ocamlfind" {< "1.6.2"}
16]
17build: [
18 [
19 make
20 "-f"
21 "configure.make"
22 "all"
23 "OCAMLBUILD_PREFIX=%{prefix}%"
24 "OCAMLBUILD_BINDIR=%{bin}%"
25 "OCAMLBUILD_LIBDIR=%{lib}%"
26 "OCAMLBUILD_MANDIR=%{man}%"
27 "OCAML_NATIVE=%{ocaml:native}%"
28 "OCAML_NATIVE_TOOLS=%{ocaml:native}%"
29 ]
30 [make "check-if-preinstalled" "all" "opam-install"]
31]
32dev-repo: "git+https://github.com/ocaml/ocamlbuild.git"
33available: os != "win32"
34url {
35 src: "https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.14.1.tar.gz"
36 checksum: [
37 "md5=7027e507ed85f290923ad198f3d2cd1c"
38 "sha512=1f5b43215b1d3dc427b9c64e005add9d423ed4bca9686d52c55912df8955647cb2d7d86622d44b41b14c4f0d657b770c27967c541c868eeb7c78e3bd35b827ad"
39 ]
40}