dune/jbuilder.opam

33 lines
1.0 KiB
Plaintext
Raw Normal View History

2016-12-02 13:54:32 +00:00
opam-version: "1.2"
maintainer: "opensource@janestreet.com"
authors: ["Jane Street Group, LLC <opensource@janestreet.com>"]
homepage: "https://github.com/ocaml/dune"
bug-reports: "https://github.com/ocaml/dune/issues"
dev-repo: "https://github.com/ocaml/dune.git"
2016-12-02 13:54:32 +00:00
license: "Apache-2.0"
build: [
["ocaml" "bootstrap.ml"]
["./boot.exe" "--subst"] {pinned}
["./boot.exe" "-j" jobs]
2016-12-02 13:54:32 +00:00
]
build-test: [
["./_build/default/bin/main.exe" "runtest" "-p" name "-j" jobs]
]
2017-03-28 13:20:08 +00:00
depends: [
# ocamlfind is not mandatory to build packages using
# jbuilder. However if it is present jbuilder will use it. Making
# it a hard-dependency avoids problems when there is a previous
# ocamlfind in the PATH. We make it a "build" depepdency even though
# it is only a runtime dependency so that reinstalling ocamlfind
# doesn't resintall jbuilder
"ocamlfind" {build}
"menhir" {test}
"reason" {test}
"ocaml-migrate-parsetree" {test}
2017-12-19 06:38:53 +00:00
"ppx_driver" {test}
"odoc" {test}
"js_of_ocaml-compiler" {test}
2017-12-22 11:32:51 +00:00
"utop" {test}
]
2017-02-26 21:28:30 +00:00
available: [ ocaml-version >= "4.02.3" ]