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.8.1/dune-1.8.1.tbz" 44 checksum: [ 45 "sha256=029ae58fbf700847787023b600790f24ffe840f03ddd57bdf7d36a42d2c7d306" 46 "md5=ea21600b365082e1baf15aab165452da" 47 ] 48}