this repo has no description
1opam-version: "2.0"
2synopsis: """Browser programming toolkit for OCaml"""
3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
4authors: ["The brr programmers"]
5homepage: "https://erratique.ch/software/brr"
6doc: "https://erratique.ch/software/brr/doc/"
7dev-repo: "git+https://erratique.ch/repos/brr.git"
8bug-reports: "https://github.com/dbuenzli/brr/issues"
9license: ["ISC" "BSD-3-Clause"]
10tags: ["reactive" "declarative" "frp" "front-end" "browser" "org:erratique"]
11depends: ["ocaml" {>= "4.08.0"}
12 "ocamlfind" {build}
13 "ocamlbuild" {build}
14 "js_of_ocaml-compiler" {>= "3.7.1"}
15 "js_of_ocaml-toplevel" {>= "3.7.1" & < "4.1.0"}
16 "note"]
17build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]]
18url {
19 src: "https://erratique.ch/software/brr/releases/brr-0.0.2.tbz"
20 checksum: "sha512=038e864ee718531ddf7a85166c9fec747eef20e55cdaf6610807275775d54ea1d3139ecc73afd4922ae2927c6e9ea367de93fdb3d9d369e848c69e9d8ccf8607"}
21description: """
22Brr is a toolkit for programming browsers in OCaml with the
23[`js_of_ocaml`][jsoo] compiler. It provides:
24
25* Interfaces to a selection of browser APIs.
26* Note based reactive support (optional and experimental).
27* An OCaml console developer tool for live interaction
28 with programs running in web pages.
29* A JavaScript FFI for idiomatic OCaml programming.
30
31Brr is distributed under the ISC license. It depends on [Note][note]
32and on the `js_of_ocaml` compiler and runtime – but not on its
33libraries or syntax extension.
34
35[note]: https://erratique.ch/software/note
36[jsoo]: https://ocsigen.org/js_of_ocaml
37
38Homepage: https://erratique.ch/software/brr"""