this repo has no description
1opam-version: "2.0" 2synopsis: "Unicode text segmentation for OCaml" 3description: """\ 4Uuseg is an OCaml library for segmenting Unicode text. It implements 5the locale independent [Unicode text segmentation algorithms][1] to 6detect grapheme cluster, word and sentence boundaries and the [Unicode 7line breaking algorithm][2] to detect line break opportunities. 8 9The library is independent from any IO mechanism or Unicode text data 10structure and it can process text without a complete in-memory 11representation. 12 13Uuseg is distributed under the ISC license. It depends on [Uucp]. 14 15[1]: http://www.unicode.org/reports/tr29/ 16[2]: http://www.unicode.org/reports/tr14/ 17[Uucp]: http://erratique.ch/software/uucp 18 19Homepage: <http://erratique.ch/software/uuseg>""" 20maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 21authors: "The uuseg programmers" 22license: "ISC" 23tags: ["unicode" "text" "segmentation" "org:erratique"] 24homepage: "https://erratique.ch/software/uuseg" 25doc: "https://erratique.ch/software/uuseg/doc/" 26bug-reports: "https://github.com/dbuenzli/uuseg/issues" 27depends: [ 28 "ocaml" {>= "4.14.0"} 29 "ocamlfind" {build} 30 "ocamlbuild" {build} 31 "topkg" {build & >= "1.0.3"} 32 "uucp" {>= "15.1.0" & < "16.0.0"} 33] 34depopts: ["uutf" "cmdliner"] 35conflicts: [ 36 "uutf" {< "1.0.0"} 37 "cmdliner" {< "1.1.0"} 38] 39build: [ 40 "ocaml" 41 "pkg/pkg.ml" 42 "build" 43 "--dev-pkg" 44 "%{dev}%" 45 "--with-uutf" 46 "%{uutf:installed}%" 47 "--with-cmdliner" 48 "%{cmdliner:installed}%" 49] 50dev-repo: "git+https://erratique.ch/repos/uuseg.git" 51url { 52 src: "https://erratique.ch/software/uuseg/releases/uuseg-15.1.0.tbz" 53 checksum: 54 "sha512=1e9460dc5a856c985d40c61fd1560bdfdb8bbaf8d7430405814589b47d4a7f7869658d1e3198c7a9132412e9b4b85402ceb4bda5040da426b69e9aef4222a23a" 55}