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