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/uucd" 5dev-repo: "git+http://erratique.ch/repos/uucd.git" 6bug-reports: "https://github.com/dbuenzli/uucd/issues" 7doc: "http://erratique.ch/software/uucd/doc/Uucd" 8tags: [ "unicode" "database" "decoder" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.01.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build} 15 "xmlm" 16] 17build: [[ 18 "ocaml" "pkg/pkg.ml" "build" 19 "--pinned" "%{pinned}%" ]] 20synopsis: "Unicode character database decoder for OCaml" 21description: """ 22Uucd is an OCaml module to decode the data of the [Unicode character 23database][1] from its XML [representation][2]. It provides high-level 24(but not necessarily efficient) access to the data so that efficient 25representations can be extracted. 26 27Uucd is made of a single module, depends on [Xmlm][xmlm] and is distributed 28under the ISC license. 29 30[1]: http://www.unicode.org/reports/tr44/ 31[2]: http://www.unicode.org/reports/tr42/ 32[xmlm]: http://erratique.ch/software/xmlm""" 33url { 34 src: "http://erratique.ch/software/uucd/releases/uucd-11.0.0.tbz" 35 checksum: [ 36 "sha256=4f04de756bb6eb50008c6644688d9f5e45d1ff47a0f681f79b8775b0dd119250" 37 "md5=4bd7b0ad64b054422b412d29b06aa843" 38 ] 39}