this repo has no description
1opam-version: "2.0" 2synopsis: "Unicode text normalization for OCaml" 3description: """\ 4Uunf is an OCaml library for normalizing Unicode text. It supports all 5Unicode [normalization forms][nf]. The library is independent from any 6IO mechanism or Unicode text data structure and it can process text 7without a complete in-memory representation. 8 9Uunf has no dependency. It may optionally depend on [Uutf][uutf] for 10support on OCaml UTF-X encoded strings. It is distributed under the 11ISC license. 12 13[nf]: http://www.unicode.org/reports/tr15/ 14[uutf]: http://erratique.ch/software/uutf 15 16Home page: http://erratique.ch/software/uunf""" 17maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 18authors: "The uunf programmers" 19license: "ISC" 20tags: ["unicode" "text" "normalization" "org:erratique"] 21homepage: "https://erratique.ch/software/uunf" 22doc: "https://erratique.ch/software/uunf/doc/Uunf" 23bug-reports: "https://github.com/dbuenzli/uunf/issues" 24depends: [ 25 "ocaml" {>= "4.03.0"} 26 "ocamlfind" {build} 27 "ocamlbuild" {build} 28 "topkg" {build & >= "1.0.3"} 29 "uucd" {dev & >= "15.0.0" & < "15.1.0"} 30] 31depopts: ["uutf" "cmdliner"] 32conflicts: [ 33 "uutf" {< "1.0.0"} 34 "cmdliner" {< "1.1.0"} 35] 36build: [ 37 "ocaml" 38 "pkg/pkg.ml" 39 "build" 40 "--dev-pkg" 41 "%{dev}%" 42 "--with-uutf" 43 "%{uutf:installed}%" 44 "--with-cmdliner" 45 "%{cmdliner:installed}%" 46] 47post-messages: 48 "If the build fails with \"ocamlopt.opt got signal and exited\", issue 'ulimit -s unlimited' and retry." 49 {failure & (arch = "ppc64" | arch = "arm64")} 50dev-repo: "git+https://erratique.ch/repos/uunf.git" 51url { 52 src: "https://erratique.ch/software/uunf/releases/uunf-15.0.0.tbz" 53 checksum: 54 "sha512=204d923d4e8d910318180c15087fe53d98d8ec0a8d3c3f6c54219e5e09ee5c5bdf57585e5570d895f8d90647c4eeaa45d9e6e75d58edeb9febee053e0dd47fbc" 55}