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: """\ 25 26Uutf is a non-blocking streaming codec to decode and encode the UTF-8, 27UTF-16, UTF-16LE and UTF-16BE encoding schemes. It can efficiently 28work character by character without blocking on IO. Decoders perform 29character position tracking and support newline normalization. 30 31Functions are also provided to fold over the characters of UTF encoded 32OCaml string values and to directly encode characters in OCaml 33Buffer.t values. 34 35Uutf has no dependency and is distributed under the ISC license. 36""" 37url { 38 src: "http://erratique.ch/software/uutf/releases/uutf-1.0.2.tbz" 39 checksum: [ 40 "sha256=e61a81f535e535b8772aa8ec4950939dd588b9337d4c9fec9743483c3ccda1db" 41 "md5=a7c542405a39630c689a82bd7ef2292c" 42 ] 43}