this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The uucd programmers"] 4homepage: "https://erratique.ch/software/uucd" 5dev-repo: "git+https://erratique.ch/repos/uucd.git" 6bug-reports: "https://github.com/dbuenzli/uucd/issues" 7doc: "https://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" "--pinned" "%{pinned}%" ]] 19synopsis: """Unicode character database decoder for OCaml""" 20description: """\ 21 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 33""" 34url { 35 src: "https://erratique.ch/software/uucd/releases/uucd-13.0.0.tbz" 36 checksum: [ 37 "sha256=62a3f8625368add8b22c23928a6cf5befe3c3ea21f42d4c39e2dae481e3ce7b9" 38 "md5=b808523defcbb6dcb25c7c60da3c7a4a" 39 ] 40}