this repo has no description
1opam-version: "2.0"
2synopsis: "Plugin to use cppo with ocamlbuild"
3description: """\
4This ocamlbuild plugin lets you use cppo in ocamlbuild projects.
5
6To use it, you can call ocamlbuild with the argument `-plugin-tag
7package(cppo_ocamlbuild)` (only since ocaml 4.01 and cppo >= 0.9.4)."""
8maintainer: [
9 "Martin Jambon <martin@mjambon.com>" "Yishuai Li <yishuai@upenn.edu>"
10]
11authors: "Martin Jambon"
12license: "BSD-3-Clause"
13homepage: "https://github.com/ocaml-community/cppo"
14doc: "https://ocaml-community.github.io/cppo"
15bug-reports: "https://github.com/ocaml-community/cppo/issues"
16depends: [
17 "ocaml"
18 "dune" {>= "2.0"}
19 "ocamlbuild"
20 "ocamlfind"
21]
22build: [
23 ["dune" "subst"] {dev}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36dev-repo: "git+https://github.com/ocaml-community/cppo.git"
37url {
38 src:
39 "https://github.com/ocaml-community/cppo/archive/refs/tags/v1.7.0.tar.gz"
40 checksum: [
41 "md5=90f66810f73b115cc55e581a34bf7db9"
42 "sha512=cafa2f7add42912b413f39e1d9fb7a2a42a9be134128c179dfe353f35a6c32840720d2166a77d985941300cb945b9c424b38401d20027d814b25f3bac534506d"
43 ]
44}