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