this repo has no description
1opam-version: "2.0"
2synopsis: "Fast, portable and opinionated build system"
3description: """
4
5dune is a build system that was designed to simplify the release of
6Jane Street packages. It reads metadata from "dune" files following a
7very simple s-expression syntax.
8
9dune is fast, it has very low-overhead and support parallel builds on
10all platforms. It has no system dependencies, all you need to build
11dune and packages using dune is OCaml. You don't need or make or bash
12as long as the packages themselves don't use bash explicitly.
13
14dune supports multi-package development by simply dropping multiple
15repositories into the same directory.
16
17It also supports multi-context builds, such as building against
18several opam roots/switches simultaneously. This helps maintaining
19packages across several versions of OCaml and gives cross-compilation
20for free.
21"""
22maintainer: ["Jane Street Group, LLC"]
23authors: ["Jane Street Group, LLC"]
24license: "MIT"
25homepage: "https://github.com/ocaml/dune"
26doc: "https://dune.readthedocs.io/"
27bug-reports: "https://github.com/ocaml/dune/issues"
28depends: [
29 "ocaml" {>= "4.02" & < "4.12"}
30 "base-unix"
31 "base-threads"
32]
33conflicts: [
34 "jbuilder" {!= "transition"}
35 "odoc" {< "1.3.0"}
36 "dune-release" {< "1.3.0"}
37]
38dev-repo: "git+https://github.com/ocaml/dune.git"
39build: [
40 ["ocaml" "bootstrap.ml"]
41 ["./boot.exe" "--release" "--subst"] {pinned}
42 ["./boot.exe" "--release" "-j" jobs]
43]
44url {
45 src:
46 "https://github.com/ocaml/dune/releases/download/1.11.1/dune-build-info-1.11.1.tbz"
47 checksum: [
48 "sha256=57afa265e08810fe910a1e277ffc4877490d9ddfbe984882a17d05daa2723f42"
49 "sha512=14dbb9ade5b86b2b136e1658eb96d4d455838b01ec2129591816f0cafa037b97b1570cd8a45b4a664b87eb5f4b6f2de1cc14c64221b922623415e59c73638ec8"
50 ]
51}