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