this repo has no description
1opam-version: "2.0"
2synopsis: "Easy OCaml bindings for JavaScript libraries"
3description: """
4
5gen_js_api aims at simplifying the creation of OCaml bindings for
6JavaScript libraries. Authors of bindings write OCaml signatures for
7JavaScript libraries and the tool generates the actual binding code
8with a combination of implicit conventions and explicit annotations.
9
10gen_js_api is to be used with the js_of_ocaml compiler.
11 """
12maintainer: ["Alain Frisch <alain.frisch@lexifi.com>"]
13authors: [
14 "Alain Frisch <alain.frisch@lexifi.com>"
15 "Sebastien Briais <sebastien.briais@lexifi.com>"
16]
17license: "MIT"
18homepage: "https://github.com/LexiFi/gen_js_api"
19bug-reports: "https://github.com/LexiFi/gen_js_api/issues"
20depends: [
21 "dune" {>= "2.7"}
22 "ocaml" {>= "4.08"}
23 "ppxlib" {>= "0.22"}
24 "ppxlib" {with-test & < "0.26.0"}
25 "js_of_ocaml-compiler" {with-test}
26 "conf-npm" {with-test}
27 "ojs"
28 "odoc" {with-doc}
29]
30conflicts: [
31 "js_of_ocaml-compiler" {< "3.0.0"}
32]
33build: [
34 ["dune" "subst"] {dev}
35 [
36 "dune"
37 "build"
38 "-p"
39 name
40 "-j"
41 jobs
42 "@install"
43 "@runtest" {with-test}
44 "@doc" {with-doc}
45 ]
46]
47x-ci-accept-failures: [
48 "ubuntu-16.04"
49]
50dev-repo: "git+https://github.com/LexiFi/gen_js_api.git"
51url {
52 src: "https://github.com/LexiFi/gen_js_api/archive/v1.0.8.tar.gz"
53 checksum: [
54 "md5=4e796cdd06f3c7440e9342ff034c14d5"
55 "sha512=df3dad1ce2359b8fbaee5fcc08b07fc34ba57016baac4e153f2d3cd061eba21596d5ec0088ca697420227e153a37a56b64e301a8524bc853fe8c12e215cb0689"
56 ]
57}