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