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-10.0.0.tbz" 35 checksum: [ 36 "sha256=b8143087097849c573a7911ce8c6b380b080d5e6316380382a96b0a8b679be31" 37 "md5=a7ba48ec98670df2b6147ba721a393f8" 38 ] 39}