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" {>= "1.10"} 19 "ocamlbuild" 20 "ocamlfind" 21] 22build: [ 23 ["dune" "subst"] {dev} 24 ["dune" "build" "-p" name "-j" jobs] 25 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 26 ["dune" "build" "-p" name "@doc"] {with-doc} 27] 28dev-repo: "git+https://github.com/ocaml-community/cppo.git" 29url { 30 src: "https://github.com/ocaml-community/cppo/archive/v1.6.9.tar.gz" 31 checksum: [ 32 "md5=d23ffe85ac7dc8f0afd1ddf622770d09" 33 "sha512=26ff5a7b7f38c460661974b23ca190f0feae3a99f1974e0fd12ccf08745bd7d91b7bc168c70a5385b837bfff9530e0e4e41cf269f23dd8cf16ca658008244b44" 34 ] 35}