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.1-only 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" 9build: [ 10 [ 11 make 12 "-f" 13 "configure.make" 14 "all" 15 "OCAMLBUILD_PREFIX=%{prefix}%" 16 "OCAMLBUILD_BINDIR=%{bin}%" 17 "OCAMLBUILD_LIBDIR=%{lib}%" 18 "OCAMLBUILD_MANDIR=%{man}%" 19 "OCAML_NATIVE=%{ocaml:native}%" 20 "OCAML_NATIVE_TOOLS=%{ocaml:native}%" 21 ] 22 [make "check-if-preinstalled" "all" "opam-install"] 23] 24conflicts: [ 25 "base-ocamlbuild" 26 "ocamlfind" {< "1.6.2"} 27] 28synopsis: 29 "OCamlbuild is a build system with builtin rules to easily build most OCaml projects." 30depends: [ 31 "ocaml" {>= "4.03" & < "5.0"} 32] 33available: os != "win32" 34url { 35 src: "https://github.com/ocaml/ocamlbuild/archive/0.14.0.tar.gz" 36 checksum: "sha256=87b29ce96958096c0a1a8eeafeb6268077b2d11e1bf2b3de0f5ebc9cf8d42e78" 37}