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: "Gabriel Radanne <drupyog@zoho.com>" 5license: "MIT" 6homepage: "https://github.com/Drup/ocaml-lmdb" 7bug-reports: "https://github.com/Drup/ocaml-lmdb/issues" 8dev-repo: "git+https://github.com/Drup/ocaml-lmdb.git" 9doc: "https://drup.github.io/ocaml-lmdb/dev/Lmdb.html" 10tags: [ "clib:lmdb" "database" ] 11build: [ 12 ["ocaml" "setup.ml" "-configure" "--prefix" prefix] 13 ["ocaml" "setup.ml" "-build"] 14 [ "ocaml" "setup.ml" "-doc" ] {with-doc} 15] 16install: ["ocaml" "setup.ml" "-install"] 17remove: ["ocamlfind" "remove" "lmdb"] 18depends: [ 19 "base-bytes" 20 "ctypes" {< "0.18.0"} 21 "ctypes-foreign" 22 "unix-type-representations" 23 "ocamlfind" {build} 24 25 "oasis" {dev & build} 26] 27 28depexts: [ 29 ["liblmdb-dev"] {os-family = "debian"} 30 ["lmdb"] {os = "macos" & os-distribution = "homebrew"} 31 ["lmdb"] {os = "macos" & os-distribution = "macports"} 32 ["lmdb-devel"] {os-distribution = "fedora"} 33 ["lmdb-devel"] {os-family = "suse" | os-family = "opensuse"} 34 ["lmdb"] {os-distribution = "arch"} 35] 36url { 37 src: "https://github.com/Drup/ocaml-lmdb/archive/0.1.tar.gz" 38 checksum: [ 39 "md5=6aab44ccb970598bde5e75cf8042fc23" 40 "sha512=5314e76bee5b82437721c32af302cce888e42c41729cde769cb0142f71126cdc7cf2c3dc0a2e3796e0a6de3539d0c4ddb04c74590bd3318b3d70fbba246c913e" 41 ] 42}