this repo has no description
1opam-version: "2.0" 2synopsis: "Parser for ocaml documentation comments" 3description: """ 4Odoc_parser is a library for parsing the contents of OCaml documentation 5comments, formatted using 'odoc' syntax, an extension of the language 6understood by ocamldoc.""" 7maintainer: ["Jon Ludlam <jon@recoil.org>"] 8authors: ["Anton Bachin <antonbachin@yahoo.com>"] 9license: "ISC" 10homepage: "https://github.com/ocaml/odoc" 11bug-reports: "https://github.com/ocaml/odoc/issues" 12dev-repo: "git+https://github.com/ocaml/odoc.git" 13doc: "https://ocaml.github.io/odoc/odoc_parser" 14flags: [ avoid-version ] 15depends: [ 16 "dune" {>= "3.7"} 17 "ocaml" {>= "4.02.0" & < "5.4"} 18 "astring" 19 "result" 20 "camlp-streams" 21 "ppx_expect" {with-test} 22 ("ocaml" {< "4.04.1" & with-test} | "sexplib0" {with-test}) 23] 24build: [ 25 ["dune" "subst"] {dev} 26 [ 27 "dune" 28 "build" 29 "-p" 30 name 31 "-j" 32 jobs 33 "@install" 34 # Tests are not all associated with a package and would be run if using the 35 # default '@runtest'. 36 "@src/parser/runtest" {with-test} 37 ] 38] 39x-maintenance-intent: ["(latest)"] 40url { 41 src: 42 "https://github.com/ocaml/odoc/releases/download/3.0.0_beta1/odoc-3.0.0.beta1.tbz" 43 checksum: [ 44 "sha256=237473ccb54db660c0d476529268df4095a437906612f2ab5f01979852ca01ef" 45 "sha512=c758448306f867e90203634b5e4e63b83b4c14ab293f5e0623fb2d3a852b4e944998b174a4b0ea758b098eef588aab92882095e28a59ed6b430677c0497fd70b" 46 ] 47} 48x-commit-hash: "12ad5b5ff2a37d24070553180167d9cdbe631b80" 49