this repo has no description
1opam-version: "2.0"
2maintainer: "https://github.com/ocaml/opam-repository/issues"
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"
8build: [
9 ["./configure"]
10 [make "all"]
11 [make "test"] {with-test}
12]
13depends: [
14 "ocaml"
15 "ocamlfind" {build}
16 "conf-dbm"
17]
18install: [
19 ["mkdir" "-p" "%{lib}%/dbm"]
20 [make "install" "STUBLIBDIR=%{lib}%/stublibs" "LIBDIR=%{lib}%/dbm"]
21 ["cp" "META" "%{lib}%/dbm"]
22]
23remove: [
24 ["rm" "-f" "%{lib}%/stublibs/dllcamldbm.so"]
25 ["ocamlfind" "remove" "dbm"]
26]
27synopsis: "Binding to the NDBM/GDBM Unix \"databases\""
28flags: light-uninstall
29url {
30 src: "https://github.com/ocaml/dbm/archive/camldbm-1.3.tar.gz"
31 checksum: "sha256=126fd020be0dd13be7e8854fcd3637392ff039c8b865243bb4dad15a954a0da7"
32}