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"] 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.03"} 16 "dune-build-info" 17] 18build: [ 19 ["dune" "subst"] {dev} 20 [ 21 "dune" 22 "build" 23 "-p" 24 name 25 "-j" 26 jobs 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31] 32dev-repo: "git+https://github.com/avsm/ocaml-print-intf.git" 33url { 34 src: 35 "https://github.com/avsm/ocaml-print-intf/releases/download/v1.0.0/ocaml-print-intf-v1.0.0.tbz" 36 checksum: [ 37 "sha256=e31ed8fd95010addd1a6e4fb6bc638916ba5265ea3b4ebc923e2273290b8a97a" 38 "sha512=961ad780982423e1fe29532cacfd6f012b5dfedb3066ecfff67a1927877978a9452cce63cc113863f9070006f8c0e40d2af7b4a966b27af0929fbd500f6b7b97" 39 ] 40}