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.15.0.tar.gz" 41 checksum: [ 42 "sha512=c8311a9a78491bf759eb27153d6ba4692d27cd935759a145f96a8ba8f3c2e97cef54e7d654ed1c2c07c74f60482a4fef5224e26d0f04450e69cdcb9418c762d3" 43 ] 44}