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" {>= "2.0.0" & < "3.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-1.0.1.tbz"
50 checksum: [
51 "sha256=3b4ba84e70b972e013b1a0265523bce9432883f9ab7ab82a74b24e6fb70c8bef"
52 "md5=bd7b27ebe493d5bcec08c23395b5ae7d"
53 ]
54}