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