this repo has no description
1opam-version: "2.0" 2maintainer: "francois.pottier@inria.fr" 3authors: [ 4 "François Pottier <francois.pottier@inria.fr>" 5 "Nicolas Pouillard <np@nicolaspouillard.fr>" 6] 7homepage: "https://github.com/fpottier/pprint" 8dev-repo: "git+ssh://git@github.com/fpottier/pprint.git" 9bug-reports: "francois.pottier@inria.fr" 10build: [make "-f" "Makefile" "all"] 11install: [make "-f" "Makefile" "install"] 12remove: [make "-f" "Makefile" "uninstall"] 13depends: [ 14 "ocaml" {>= "4.02"} 15 "ocamlfind" {build} 16 "ocamlbuild" {build} 17] 18synopsis: "A pretty-printing combinator library and rendering engine" 19description: "This library offers a set of combinators for building so-called documents as 20well as an efficient engine for converting documents to a textual, fixed-width 21format. The engine takes care of indentation and line breaks, while respecting 22the constraints imposed by the structure of the document and by the text width." 23url { 24 src: "https://github.com/fpottier/pprint/archive/20180528.tar.gz" 25 checksum: [ 26 "sha256=0624dbe5234832219f5964c51c1fffb44cb7d7e5e993f5677bd4837e9537a829" 27 "md5=a75651b51ba6668cd6121799986a1ca2" 28 ] 29}