forked from ocsigen/js_of_ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
js_of_ocaml.opam
37 lines (37 loc) · 1.04 KB
/
js_of_ocaml.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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Compiler from OCaml bytecode to JavaScript"
description:
"Js_of_ocaml is a compiler from OCaml bytecode to JavaScript. It makes it possible to run pure OCaml programs in JavaScript environment like browsers and Node.js"
maintainer: ["Ocsigen team <[email protected]>"]
authors: ["Ocsigen team <[email protected]>"]
license:
"GPL-2.0-or-later AND LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception"
homepage: "https://ocsigen.github.io/js_of_ocaml"
doc: "https://ocsigen.github.io/js_of_ocaml"
bug-reports: "https://github.com/ocsigen/js_of_ocaml/issues"
depends: [
"dune" {>= "2.8"}
"ocaml" {>= "4.04"}
"js_of_ocaml-compiler" {= version}
"ppxlib" {>= "0.15"}
"uchar"
"num" {with-test}
"ppx_expect" {with-test}
"re" {>= "1.9.0" & with-test}
"odoc" {with-doc}
]
dev-repo: "git+https://github.com/ocsigen/js_of_ocaml.git"
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@doc" {with-doc}
]
]