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.6.tar.gz"
40 checksum: [
41 "sha256=784736107f675f8c20ab9aa0af13445d01483610d5b36df36c51f75c0fe101ac"
42 "md5=04c05c3c324dc80f7cae0e6879d5a67c"
43 ]
44}