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