this repo has no description
1opam-version: "2.0"
2synopsis: "Code preprocessor like cpp for OCaml"
3description: """\
4Cppo is an equivalent of the C preprocessor for OCaml programs.
5It allows the definition of simple macros and file inclusion.
6
7Cppo is:
8
9* more OCaml-friendly than cpp
10* easy to learn without consulting a manual
11* reasonably fast
12* simple to install and to maintain"""
13maintainer: [
14 "Martin Jambon <martin@mjambon.com>" "Yishuai Li <yishuai@upenn.edu>"
15]
16authors: "Martin Jambon"
17license: "BSD-3-Clause"
18homepage: "https://github.com/ocaml-community/cppo"
19doc: "https://ocaml-community.github.io/cppo"
20bug-reports: "https://github.com/ocaml-community/cppo/issues"
21depends: [
22 "ocaml" {>= "4.02.3"}
23 "dune" {>= "1.10"}
24 "base-unix"
25]
26build: [
27 ["dune" "subst"] {dev}
28 ["dune" "build" "-p" name "-j" jobs]
29 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
30 ["dune" "build" "-p" name "@doc"] {with-doc}
31]
32dev-repo: "git+https://github.com/ocaml-community/cppo.git"
33url {
34 src: "https://github.com/ocaml-community/cppo/archive/v1.6.9.tar.gz"
35 checksum: [
36 "md5=d23ffe85ac7dc8f0afd1ddf622770d09"
37 "sha512=26ff5a7b7f38c460661974b23ca190f0feae3a99f1974e0fd12ccf08745bd7d91b7bc168c70a5385b837bfff9530e0e4e41cf269f23dd8cf16ca658008244b44"
38 ]
39}