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/uuseg"
5doc: "http://erratique.ch/software/uuseg"
6dev-repo: "git+http://erratique.ch/repos/uuseg.git"
7bug-reports: "https://github.com/dbuenzli/uuseg/issues"
8tags: [ "segmentation" "text" "unicode" "org:erratique" ]
9license: "ISC"
10depends: [
11 "ocaml" {>= "4.01.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "topkg" {build}
15 "uchar"
16 "uucp" {>= "11.0.0" & < "12.0.0"}
17]
18depopts: [
19 "uutf"
20 "cmdliner"
21 "uutf" {with-test}
22 "cmdliner" {with-test}
23]
24conflicts: [ "uutf" {< "1.0.0"} ]
25build: [[
26 "ocaml" "pkg/pkg.ml" "build"
27 "--pinned" "%{pinned}%"
28 "--with-uutf" "%{uutf:installed}%"
29 "--with-cmdliner" "%{cmdliner:installed}%" ]]
30synopsis: "Unicode text segmentation for OCaml"
31description: """
32Uuseg is an OCaml library for segmenting Unicode text. It implements
33the locale independent [Unicode text segmentation algorithms][1] to
34detect grapheme cluster, word and sentence boundaries and the
35[Unicode line breaking algorithm][2] to detect line break
36opportunities.
37
38The library is independent from any IO mechanism or Unicode text data
39structure and it can process text without a complete in-memory
40representation.
41
42Uuseg depends on [Uucp](http://erratique.ch/software/uucp) and
43optionally on [Uutf](http://erratique.ch/software/uutf) for support on
44OCaml UTF-X encoded strings. It is distributed under the ISC license.
45
46[1]: http://www.unicode.org/reports/tr29/
47[2]: http://www.unicode.org/reports/tr14/"""
48url {
49 src: "http://erratique.ch/software/uuseg/releases/uuseg-11.0.0.tbz"
50 checksum: [
51 "sha256=97e745a5887e3c46856d9acfad4d06c6dff589a981dae7769d800c7bd345b69e"
52 "md5=47f29c44d3fc3fe0c3203ac363ce81d4"
53 ]
54}