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 "ocamlbuild" {build}
26 "conf-libmaxminddb"
27]
28synopsis: "Bindings to Maxmind.com's libmaxminddb library, think geoip2"
29description: """
30Maxminddb provides OCaml bindings to MaxMind's libmaxminddb C
31library, libmaxminddb is the database powering GeoIP2. GeoIP2
32provides geographical/geolocation information about ip addresses
33like city of origin, country of origin and more. This library comes
34with the the free GeoLite2 City and Country MaxMindDB files.
35
36This product includes GeoLite2 data created by MaxMind, available
37from <a href="http://www.maxmind.com">http://www.maxmind.com</a>."""
38flags: light-uninstall
39url {
40 src: "https://github.com/fxfactorial/ocaml-maxminddb/archive/v0.3.tar.gz"
41 checksum: [
42 "sha256=7078382edeb8a4eeb8722f61c5401f1a779cd94a08c95b051370ab59518db3d1"
43 "md5=e1a41706d8ee1ecaf06858c065041184"
44 ]
45}