this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: [ "The uucp programmers" ] 4homepage: "https://erratique.ch/software/uucp" 5doc: "https://erratique.ch/software/uucp/doc/Uucp" 6dev-repo: "git+https://erratique.ch/repos/uucp.git" 7bug-reports: "https://github.com/dbuenzli/uucp/issues" 8tags: [ "unicode" "text" "character" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.03.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.9.0"} 15 "uucd" {with-test} # dev really 16 "uunf" {with-test} 17 "uutf" {with-test} 18 ] 19depopts: [ "uunf" "uutf" "cmdliner" ] 20conflicts: [ "uutf" {< "1.0.1"} 21 "cmdliner" {< "1.0.0"} ] 22build: [[ 23 "ocaml" "pkg/pkg.ml" "build" 24 "--dev-pkg" "%{pinned}%" 25 "--with-uutf" "%{uutf:installed}%" 26 "--with-uunf" "%{uunf:installed}%" 27 "--with-cmdliner" "%{cmdliner:installed}%" 28]] 29 30synopsis: """Unicode character properties for OCaml""" 31description: """\ 32 33Uucp is an OCaml library providing efficient access to a selection of 34character properties of the [Unicode character database][1]. 35 36Uucp is independent from any Unicode text data structure and has no 37dependencies. It is distributed under the ISC license. 38 39[1]: http://www.unicode.org/reports/tr44/ 40""" 41url { 42 src: "https://erratique.ch/software/uucp/releases/uucp-13.0.0.tbz" 43 checksum: [ 44 "sha256=38fa476c2382fef3057721f0ca10928ac52fd8fc8ef316de636a2ad5af476ea6" 45 "md5=07e706249ddb2d02f0fa298804d3c739" 46 ] 47}