this repo has no description
1opam-version: "2.0" 2maintainer: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 3authors: "Edgar Aroutiounian <edgar.factorial@gmail.com>" 4homepage: "http://hyegar.com" 5bug-reports: "https://github.com/fxfactorial/ocaml-maxminddb/issues" 6license: "BSD-3-Clause" 7tags: "clib:maxminddb" 8dev-repo: "git+http://github.com/fxfactorial/ocaml-maxminddb.git" 9build: [ 10 ["oasis" "setup"] 11 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 12 ["ocaml" "setup.ml" "-build"] 13 ["oasis" "setup"] {with-test} 14 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 15 ["ocaml" "setup.ml" "-build"] {with-test} 16 ["ocaml" "setup.ml" "-test"] {with-test} 17 ["ocaml" "setup.ml" "-doc"] {with-doc} 18] 19install: ["ocaml" "setup.ml" "-install"] 20remove: ["ocamlfind" "remove" "maxminddb"] 21depends: [ 22 "ocaml" {>= "4.02.3"} 23 "oasis" {build & >= "0.4"} 24 "ocamlfind" {build} 25 "conf-libmaxminddb" 26] 27synopsis: "Bindings to Maxmind.com's libmaxminddb library, like geoip2" 28description: """ 29Maxminddb provides OCaml bindings to MaxMind's libmaxminddb C 30library, libmaxminddb is the database powering GeoIP2. GeoIP2 31provides geographical/geolocation information about ip addresses 32like city of origin, country of origin and more. This library comes 33with the the free GeoLite2 City and Country MaxMindDB files. 34 35This product includes GeoLite2 data created by MaxMind, available 36from <a href="http://www.maxmind.com">http://www.maxmind.com</a>.""" 37flags: light-uninstall 38url { 39 src: "https://github.com/fxfactorial/ocaml-maxminddb/archive/v0.5.tar.gz" 40 checksum: [ 41 "sha256=76508d20dbb9893c9a94e5f1d321d8222248af26d9a9b76ce1548e22176e6b78" 42 "md5=6722d1a14007dd5e7bafb6bc8f9f743e" 43 ] 44}