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.2"}
12]
13conflicts: [
14 "base-ocamlbuild"
15 "ocamlfind" {< "1.6.2"}
16]
17build: [
18 [make "all"]
19]
20install: [
21 [make "install"]
22 ["mkdir" "-p" "%{lib}%/ocamlbuild"]
23 ["install" "-m" "0644" "META" "%{lib}%/ocamlbuild"]
24]
25dev-repo: "git+https://github.com/ocaml/ocamlbuild.git"
26url {
27 src: "https://github.com/ocaml/ocamlbuild/archive/refs/tags/0.14.2.tar.gz"
28 checksum: [
29 "md5=2f407fadd57b073155a6aead887d9676"
30 "sha512=f568bf10431a1f701e8bd7554dc662400a0d978411038bbad93d44dceab02874490a8a5886a9b44e017347e7949997f13f5c3752f74e1eb5e273d2beb19a75fd"
31 ]
32}
33extra-source "ocamlbuild-0.14.2.patch" {
34 src: "https://raw.githubusercontent.com/ocaml-opam/opam-repository-mingw/354a87b397856f2a70024c5c83fc5001074935b6/packages/ocamlbuild/ocamlbuild.0.14.2/files/ocamlbuild-0.14.2.patch"
35 checksum: "sha256=a9b7e1829a3304e5a073d8ddea29d3d8272698e93b7e1ee659ae5e31e5cfb6b9"
36}
37patches: "ocamlbuild-0.14.2.patch"
38available: os = "win32"