this repo has no description
1opam-version: "2.0" 2maintainer: "Dominik Bousquet <bousquet.dominik@gmail.com>" 3authors: [ "Dominik Bousquet" ] 4license: "MIT" 5homepage: "https://github.com/dbousque/batch_jaro_winkler" 6dev-repo: "git+https://github.com/dbousque/batch_jaro_winkler.git" 7bug-reports: "https://github.com/dbousque/batch_jaro_winkler/issues" 8synopsis: "Fast batch jaro winkler distance implementation in C99" 9description: """ 10This project gets its performance from the pre-calculation of an optimized 11model in advance of the actual runtime calculations. Supports any encoding. 12""" 13build: [ 14 ["dune" "build" "-p" name "-j" jobs] 15 ["cp" "ocaml/lib/%{name}%.install" "."] 16] 17depends: [ 18 "ocaml" {>= "4.00.0"} 19 "dune" {>= "2.5"} 20] 21url { 22 src: "https://github.com/dbousque/batch_jaro_winkler/archive/0.1.0.tar.gz" 23 checksum: [ 24 "md5=803fadcf128e0b909e1d9db9e9d32db7" 25 "sha512=e89cd8cb5ce3f785cb6e187e8290f6cfe963c0577587cda78480527688abdfa556735dfc75d43f283655f8dd85ea40b2d6f3f03a221d8863e300c452541cb5e0" 26 ] 27}