this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3authors: ["Simon Cruanes" "Guillaume Bury"] 4homepage: "https://github.com/c-cube/printbox/" 5bug-reports: "https://github.com/c-cube/printbox/issues/" 6tags: ["print" "box" "table" "tree"] 7dev-repo: "git+https://github.com/c-cube/printbox.git" 8build: [ 9 ["./configure" "--%{tyxml:enable}%-html" "--enable-docs"] 10 [make "build"] 11 [make "doc"] {with-doc} 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "printbox"] 15depends: [ 16 "ocaml" {>= "4.00.0" & < "5.0"} 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "base-bytes" 20] 21depopts: "tyxml" 22synopsis: 23 "Allows to print nested boxes, lists, arrays, tables in several formats" 24description: """ 25Box combinators for structured data, with printers for text and HTML 26Doc: https://c-cube.github.io/printbox/""" 27flags: light-uninstall 28url { 29 src: "https://github.com/c-cube/printbox/archive/0.1.tar.gz" 30 checksum: [ 31 "sha256=2a99c53a5ac2e61cb1c0a2e01e2dcf7df0f14915b03e1939ba58914a6b4fbca0" 32 "md5=514ace85f9ceef9578fc3000eb7cf164" 33 ] 34}