this repo has no description
1opam-version: "2.0"
2maintainer: "Gabriel Radanne <drupyog@zoho.com>"
3synopsis: "Bindings for LMDB, a fast in-file database with ACID transactions"
4authors: [
5 "Gabriel Radanne <drupyog@zoho.com>"
6 "Christopher Zimmermann <christopher@gmerlin.de>"
7]
8license: "MIT"
9homepage: "https://github.com/Drup/ocaml-lmdb"
10bug-reports: "https://github.com/Drup/ocaml-lmdb/issues"
11dev-repo: "git+https://github.com/Drup/ocaml-lmdb.git"
12doc: "https://drup.github.io/ocaml-lmdb/dev/lmdb/Lmdb/index.html"
13tags: [ "clib:lmdb" "database" ]
14build: [
15 ["dune" "subst"] {dev}
16 ["dune" "build" "-p" name "-j" jobs]
17 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
18]
19depends: [
20 "ocaml" {>= "4.03"}
21 "bigstringaf"
22 "dune" {>= "1.2"}
23 "dune-configurator" {build}
24 "alcotest" {with-test}
25 "benchmark" {with-test}
26 "odoc" {with-doc}
27]
28
29depexts: [
30 ["liblmdb-dev"] {os-family = "debian"}
31 ["lmdb"] {os-family = "bsd"}
32 ["lmdb"] {os-family = "homebrew"}
33 ["lmdb"] {os-family = "macports"}
34 ["lmdb"] {os-family = "archlinux"}
35 ["lmdb"] {os-family = "gentoo"}
36 ["lmdb-dev"] {os-family = "alpine"}
37 ["lmdb-devel"] {os-family = "fedora"}
38 ["lmdb-devel"] {os-family = "suse" | os-family = "opensuse"}
39 ["liblmdb-devel"] {os-family = "mageia"}
40]
41url {
42 src: "https://github.com/Drup/ocaml-lmdb/archive/1.0.tar.gz"
43 checksum: [
44 "md5=0f16e523fedbc513827dcc6819e4654d"
45 "sha512=9c4da6b89d6ab025a5c2d773065ac4101c1fc30b0a63ac7e909dda38906905d25568288bc5d32ae7d860b0010d0488760a94fa4553163a1d5cffedcefbc3af1d"
46 ]
47}