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