this repo has no description
1opam-version: "2.0" 2maintainer: "Sergei Lebedev <superbobry@gmail.com>" 3authors: "Sergei Lebedev <superbobry@gmail.com>" 4homepage: "https://github.com/superbobry/ocaml-textwrap" 5bug-reports: "https://github.com/superbobry/ocaml-textwrap/issues" 6dev-repo: "git+https://github.com/superbobry/ocaml-textwrap.git" 7license: "MIT" 8build: [ 9 ["./configure" "--prefix" "%{prefix}%"] 10 [make] 11] 12install: [make "install"] 13remove: ["ocamlfind" "remove" "textwrap"] 14depends: [ 15 "ocaml" {< "5.0.0"} 16 "ocamlfind" 17 "ocamlbuild" {build} 18] 19synopsis: "Text wrapping and filling library" 20description: "An almost complete port of Python's textwrap library to OCaml." 21flags: light-uninstall 22url { 23 src: "https://github.com/superbobry/ocaml-textwrap/archive/0.2.tar.gz" 24 checksum: [ 25 "sha256=c867cbbee022ef6527481f62a26f9966b2557835036f4db4342deaf1351b5394" 26 "md5=1185e1cc3427fcdda0c07dedae842244" 27 ] 28}