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" {>= "4.0.0"} 15 "js_of_ocaml-compiler" {>= "4.0.0"} 16 "js_of_ocaml-toplevel" {>= "4.0.0"} 17 "note"] 18build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]] 19url { 20 src: "https://erratique.ch/software/brr/releases/brr-0.0.3.tbz" 21 checksum: "sha512=5fa5498c57f86799a3bd9743c41991bb7bc347f424258b474ac92d6b7cf645300c9b618ebe78ac3973d6940b38d2d7c415be20c2b68cb89452288bd3f9122add"} 22description: """ 23Brr is a toolkit for programming browsers in OCaml with the 24[`js_of_ocaml`][jsoo] compiler. It provides: 25 26* Interfaces to a selection of browser APIs. 27* Note based reactive support (optional and experimental). 28* An OCaml console developer tool for live interaction 29 with programs running in web pages. 30* A JavaScript FFI for idiomatic OCaml programming. 31 32Brr is distributed under the ISC license. It depends on [Note][note] 33and on the `js_of_ocaml` compiler and runtime – but not on its 34libraries or syntax extension. 35 36[note]: https://erratique.ch/software/note 37[jsoo]: https://ocsigen.org/js_of_ocaml 38 39Homepage: https://erratique.ch/software/brr"""