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