this repo has no description
1opam-version: "2.0"
2synopsis: """Unicode character database decoder for OCaml"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The uucd programmers"]
5homepage: "https://erratique.ch/software/uucd"
6doc: "https://erratique.ch/software/uucd/doc/Uucd"
7dev-repo: "git+https://erratique.ch/repos/uucd.git"
8bug-reports: "https://github.com/dbuenzli/uucd/issues"
9license: ["ISC"]
10tags: ["unicode" "database" "decoder" "org:erratique"]
11depends: ["ocaml" {>= "4.01.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build & >= "1.0.3"}
15 "xmlm"]
16build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]]
17url {
18 src: "https://erratique.ch/software/uucd/releases/uucd-14.0.0.tbz"
19 checksum: "sha512=2748ea59440e5379b7a1ed2aed94f1ad0c9f9063ae329a3ac9fc8dc057fa95b4b7c81fc0011eab89af31ddfe8e5562a49476590b36352e62004db476c45a67e1"}
20description: """
21Uucd is an OCaml module to decode the data of the [Unicode character
22database][1] from its XML [representation][2]. It provides high-level
23(but not necessarily efficient) access to the data so that efficient
24representations can be extracted.
25
26Uucd is made of a single module, depends on [Xmlm][xmlm] and is distributed
27under the ISC license.
28
29[1]: http://www.unicode.org/reports/tr44/
30[2]: http://www.unicode.org/reports/tr42/
31[xmlm]: http://erratique.ch/software/xmlm
32
33Home page: http://erratique.ch/software/uucd"""