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" {< "5.0.0"} 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.2.tar.gz" 31 checksum: [ 32 "sha256=8b8bd3c3aacdb28550b5645685f7f53d2cee0f70d195d9ba4d208c2029e96a53" 33 "md5=180133dd10b0b10dc47bdd8a6ab8feab" 34 ] 35}