-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathleveldb.opam
37 lines (37 loc) · 1.06 KB
/
leveldb.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "OCaml bindings for Google's LevelDB library"
description:
"These bindings expose nearly the full LevelDB C++ API, including: iterators, snapshots, batch updates and support for custom comparators. Blocking functions release the OCaml runtime system, allowing to run them in parallel with other OCaml code and to perform multiple LevelDB operations in parallel."
maintainer: ["<[email protected]>"]
authors: ["<[email protected]>"]
license: "MIT"
homepage: "https://github.com/mfp/ocaml-leveldb"
bug-reports: "https://github.com/mfp/ocaml-leveldb/issues"
depends: [
"ocaml" {>= "4.06"}
"dune" {>= "2.0"}
"ounit2" {with-test}
"odoc" {with-doc}
"conf-leveldb"
]
build: [
["dune" "subst"] {pinned}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/mfp/ocaml-leveldb.git"
depexts: [
[["debian"] ["libsnappy-dev"]]
[["debian"] ["libleveldb-dev"]]
[["ubuntu"] ["libsnappy-dev"]]
]