this repo has no description
1opam-version: "2.0"
2maintainer: ["Xavier Leroy <xavier.leroy@college-de-france.fr>"]
3authors: ["Francois Rouaix"]
4homepage: "https://github.com/ocaml/dbm"
5bug-reports: "https://github.com/ocaml/dbm/issues"
6dev-repo: "git+https://github.com/ocaml/dbm.git"
7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception"
8x-maintenance-intent: ["(latest)"]
9build: [
10 ["./configure"]
11 [make "all"]
12 [make "test"] {with-test}
13]
14depends: [
15 "ocaml"
16 "ocamlfind" {build}
17 "conf-dbm"
18]
19conflicts: [ "ocaml-option-bytecode-only" ]
20install: [
21 ["mkdir" "-p" "%{lib}%/dbm"]
22 [make "install" "STUBLIBDIR=%{lib}%/stublibs" "LIBDIR=%{lib}%/dbm"]
23 ["cp" "META" "%{lib}%/dbm"]
24]
25synopsis: "Binding to the NDBM/GDBM Unix \"databases\""
26url {
27 src: "https://github.com/ocaml/dbm/archive/camldbm-1.4.tar.gz"
28 checksum: [
29 "sha256=9fcce05f8ba7a2468f74009fe76219a5598b5bbd13d3271bf159335e17fcb599"
30 "sha512=773ac16fb22b4949eb1dc79bcbecf886419a331be62a749a7af2e9d58f2095d3305c1865ed0c4423eade05ced5679689bcd227d7118ca9413cf7508a26b701f0"
31 ]
32}