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