this repo has no description
1opam-version: "2.0"
2maintainer: "Hezekiah M. Carty <hez@0ok.org>"
3authors: [ "Hezekiah M. Carty" ]
4license: "MIT"
5homepage: "https://github.com/hcarty/bear"
6bug-reports: "https://github.com/hcarty/bear/issues"
7dev-repo: "git+https://github.com/hcarty/bear.git"
8build: [
9 ["ocaml" "setup.ml" "-configure" "--prefix" prefix]
10 ["ocaml" "setup.ml" "-build"]
11 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test}
12 ["ocaml" "setup.ml" "-build"] {with-test}
13 ["ocaml" "setup.ml" "-test"] {with-test}
14]
15install: ["ocaml" "setup.ml" "-install"]
16remove: [
17 ["ocamlfind" "remove" "bear"]
18]
19depends: [
20 "ocaml" {>= "4.02.1" & < "5.0"}
21 "ocamlfind" {build}
22 "ocamlbuild" {build}
23]
24synopsis: "Bare essential additions to the stdlib"
25description: """
26The Bear library is meant to be a very minimal extension to the OCaml
27stdlib. The feel of the library is meant to stick closely to the
28stdlib. If functionality is available from another minimal library
29(ex. Rresult, Sosa) then it should be out of scope for Bear."""
30flags: light-uninstall
31url {
32 src: "https://github.com/hcarty/bear/archive/v0.0.1.tar.gz"
33 checksum: [
34 "sha256=2f17181dbb732e794e9e9eccd851a614dee5c4779cee84dfcb52def270783962"
35 "md5=53a74fa62642c7a209e2a162efd2869f"
36 ]
37}