this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/uutf" 5doc: "http://erratique.ch/software/uutf/doc/Uutf" 6dev-repo: "git+http://erratique.ch/repos/uutf.git" 7bug-reports: "https://github.com/dbuenzli/uutf/issues" 8tags: [ "unicode" "text" "utf-8" "utf-16" "codec" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.01.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "uchar" 16] 17depopts: ["cmdliner"] 18conflicts: ["cmdliner" { < "0.9.6"} ] 19build: [[ 20 "ocaml" "pkg/pkg.ml" "build" 21 "--pinned" "%{pinned}%" 22 "--with-cmdliner" "%{cmdliner:installed}%" ]] 23synopsis: "Non-blocking streaming Unicode codec for OCaml" 24description: """ 25Uutf is a non-blocking streaming codec to decode and encode the UTF-8, 26UTF-16, UTF-16LE and UTF-16BE encoding schemes. It can efficiently 27work character by character without blocking on IO. Decoders perform 28character position tracking and support newline normalization. 29 30Functions are also provided to fold over the characters of UTF encoded 31OCaml string values and to directly encode characters in OCaml 32Buffer.t values. 33 34Uutf has no dependency and is distributed under the ISC license.""" 35url { 36 src: "http://erratique.ch/software/uutf/releases/uutf-1.0.1.tbz" 37 checksum: [ 38 "sha256=123b26e7a471f2c5bd0fce454ccf515d299610ec356e321241fae0f75833e9be" 39 "md5=b8535f974027357094c5cdb4bf03a21b" 40 ] 41}