this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3synopsis: "Fuzzy string searching, using Levenshtein automaton" 4build: [ 5 ["dune" "build" "@install" "-p" name "-j" jobs] 6 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 7 ["dune" "build" "@doc" "-p" name "-j" jobs] {with-doc} 8] 9depends: [ 10 "ocaml" {>= "4.03"} 11 "dune" {>= "1.1"} 12 "seq" 13 "stdlib-shims" 14 "qcheck" {with-test & >= "0.12"} 15 "mdx" {with-test} 16 "odoc" {with-doc} 17] 18tags: [ "spell" "levenshtein" "automaton" "typo" "edit" "distance"] 19homepage: "https://github.com/c-cube/spelll/" 20doc: "http://c-cube.github.io/spelll/" 21dev-repo: "git+https://github.com/c-cube/spelll.git" 22bug-reports: "https://github.com/c-cube/spelll/issues" 23authors: "simon.cruanes.2007@m4x.org" 24license: "BSD-2-Clause" 25url { 26 src: "https://github.com/c-cube/spelll/archive/v0.4.tar.gz" 27 checksum: [ 28 "md5=5be47bca50e0c92e1f029b3bb3ee5abc" 29 "sha512=6a7f0e6434b952819a90c05a7f6b28e12d1cd98bbb626d1e0f098bfdf95e8d910962261f332b48b7e277b72514ca224ecea964dcdd481b91924b35b1a099e786" 30 ] 31}