this repo has no description
1opam-version: "2.0" 2synopsis: "Display human-readable OCaml interface from a compiled .cmi" 3description: """ 4This tool parses a compiled .cmi interface file and outputs 5the corresponding textual .mli file. This can be useful to quickly generate 6a skeleton interface file to then annotate with comments or add abstraction.""" 7maintainer: ["anil@recoil.org"] 8authors: ["Anil Madhavapeddy" "Nathan Rebours"] 9license: "ISC" 10homepage: "https://github.com/avsm/ocaml-print-intf" 11doc: "https://avsm.github.io/ocaml-print-intf/" 12bug-reports: "https://github.com/avsm/ocaml-print-intf/issues" 13depends: [ 14 "dune" {>= "2.0"} 15 "ocaml" {>= "4.06"} 16 "bos" 17 "dune-build-info" 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/avsm/ocaml-print-intf.git" 34url { 35 src: 36 "https://github.com/avsm/ocaml-print-intf/releases/download/v1.1.0/ocaml-print-intf-v1.1.0.tbz" 37 checksum: [ 38 "sha256=d7a0d427b5c5569975efcdb111face78ed12f07955c83bd5eb01bbfd2f778bca" 39 "sha512=66447665aa699fb17b646630c21a774c61fdd73fddbb22dcd50505e672491cce905a36493020ca1db54ef7301aaf229985f82b7a4fedd41a023f2387d234a717" 40 ] 41}