this repo has no description
1opam-version: "2.0" 2 3synopsis: "Library for easy compilation from ocaml to javascript" 4 5description: """ 6 7At thin and easy to use library which implements wrappers around js_of_ocaml to 8write javascript applications for the browser or for nodejs in ocaml. 9 10""" 11 12maintainer: "Helmut Brandl <helmut.brandl@gmx.net>" 13 14authors: [ "Helmut Brandl <helmut.brandl@gmx.net>" ] 15 16license: "BSD-3-Clause" 17homepage: "https://github.com/hbr/fmlib" 18dev-repo: "git+https://github.com/hbr/fmlib.git" 19bug-reports: "https://github.com/hbr/fmlib/issues" 20 21 22build: [ 23 ["dune" "subst"] {dev} 24 ["dune" "build" "-p" name "-j" jobs "@install" "@doc" {with-doc}] 25] 26 27 28depends: [ 29 "ocaml" {>= "4.08.0"} 30 "dune" {>= "1.10"} 31 "odoc" {with-doc} 32 "ppx_inline_test" {>= "v0.13.0"} 33 "js_of_ocaml" {>= "3.8.0" & < "6.0.0"} 34 "js_of_ocaml-ppx" {>= "3.8.0"} 35 "fmlib_std" {=version} 36] 37 38url { 39 src: "https://github.com/hbr/fmlib/archive/0.3.0.tar.gz" 40 checksum: [ 41 "sha256=82db21ad71b6698a20890d329bf9e1cf6a83eb3b0e18f6acc4ffc3ad9173445d" 42 "md5=15e32aea1a5cd9962f29db3d1a1f4b7a" 43 ] 44}