this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["The uuseg programmers"] 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.03.0"} 11 "ocamlfind" {build} 12 "ocamlbuild" {build} 13 "topkg" {build} 14 "uucp" {>= "13.0.0" & < "14.0.0"} ] 15depopts: [ "uutf" 16 "cmdliner" 17 "uutf" {with-test} 18 "cmdliner" {with-test} ] 19conflicts: [ "uutf" {< "1.0.0"} ] 20build: [[ 21 "ocaml" "pkg/pkg.ml" "build" 22 "--pinned" "%{pinned}%" 23 "--with-uutf" "%{uutf:installed}%" 24 "--with-cmdliner" "%{cmdliner:installed}%" ]] 25 26synopsis: """Unicode text segmentation for OCaml""" 27description: """\ 28 29Uuseg is an OCaml library for segmenting Unicode text. It implements 30the locale independent [Unicode text segmentation algorithms][1] to 31detect grapheme cluster, word and sentence boundaries and the 32[Unicode line breaking algorithm][2] to detect line break 33opportunities. 34 35The library is independent from any IO mechanism or Unicode text data 36structure and it can process text without a complete in-memory 37representation. 38 39Uuseg depends on [Uucp](http://erratique.ch/software/uucp) and 40optionally on [Uutf](http://erratique.ch/software/uutf) for support on 41OCaml UTF-X encoded strings. It is distributed under the ISC license. 42 43[1]: http://www.unicode.org/reports/tr29/ 44[2]: http://www.unicode.org/reports/tr14/ 45""" 46url { 47 src: "https://erratique.ch/software/uuseg/releases/uuseg-13.0.0.tbz" 48 checksum: [ 49 "sha256=9ae6103dd63858b38e5d2613bc8dab98437ad01896ba1dc33be21a95912cc3a8" 50 "md5=a07a97fff61da604614ea8da0547ef6a" 51 ] 52}