this repo has no description
1opam-version: "2.0" 2maintainer: "simon.cruanes.2007@m4x.org" 3authors: "simon.cruanes.2007@m4x.org" 4homepage: "https://github.com/c-cube/spelll" 5bug-reports: "https://github.com/c-cube/spelll/issues" 6doc: "http://cedeela.fr/~simon/software/spelll/" 7tags: ["spell" "levenshtein" "automaton" "typo" "edit" "distance"] 8dev-repo: "git+https://github.com/c-cube/spelll" 9build: [ 10 ["./configure" "--docdir" "%{doc}%/spelll/"] 11 [make "all"] 12] 13install: [make "install"] 14remove: ["ocamlfind" "remove" "spelll"] 15depends: [ 16 "ocaml" {>= "4.00.0" & < "5.0" } 17 "ocamlfind" 18 "ocamlbuild" {build} 19 "base-bytes" 20] 21synopsis: 22 "Fuzzy string searching, using Levenshtein automaton. Can be used for spell-checking." 23flags: light-uninstall 24url { 25 src: "https://github.com/c-cube/spelll/archive/0.2.tar.gz" 26 checksum: [ 27 "sha256=bb189bc9f70d2409a2cc06112b6bd0862b6743042cef931bbb550df3d0add1ba" 28 "md5=dbe46f10969efba4b84882ba14001c1b" 29 ] 30}