this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/ocaml/dune"
5bug-reports: "https://github.com/ocaml/dune/issues"
6dev-repo: "git+https://github.com/ocaml/dune.git"
7license: "Apache-2.0"
8build: [
9 ["ocaml" "configure.ml" "--libdir" lib]
10 ["ocaml" "bootstrap.ml"]
11 ["./boot.exe" "--subst"] {pinned}
12 ["./boot.exe" "-j" jobs]
13]
14# Replaced by Dune
15flags: deprecated
16synopsis: "Fast, portable and opinionated build system"
17description: """
18jbuilder is a build system that was designed to simplify the release
19of Jane Street packages. It reads metadata from "jbuild" files
20following a very simple s-expression syntax.
21
22jbuilder is fast, it has very low-overhead and support parallel builds
23on all platforms. It has no system dependencies, all you need to build
24jbuilder and packages using jbuilder is OCaml. You don't need or make
25or bash as long as the packages themselves don't use bash explicitely.
26
27jbuilder supports multi-package development by simply dropping multiple
28repositories into the same directory.
29
30It also supports multi-context builds, such as building against
31several opam roots/switches simultaneously. This helps maintaining
32packages across several versions of OCaml and gives cross-compilation
33for free."""
34depends: [
35 "ocaml" {>= "4.02.3" & < "5.0"}
36]
37url {
38 src:
39 "https://github.com/ocaml/dune/releases/download/1.0%2Bbeta20.2/jbuilder-1.0+beta20.2.tbz"
40 checksum: [
41 "sha256=c55c74936c8e7a3eadfe11ea42b845de90410e0bd30c929e5b0111d001ce2694"
42 "md5=fbe8c3b1facb206cac3fb8932b5dd5d9"
43 ]
44}