this repo has no description
at main 1.6 kB view raw
1opam-version: "2.0" 2synopsis: """Software construction and deployment kit""" 3maintainer: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4authors: ["The b0 programmers"] 5homepage: "https://erratique.ch/software/b0" 6doc: "https://erratique.ch/software/b0/doc" 7dev-repo: "git+https://erratique.ch/repos/b0.git" 8bug-reports: "https://github.com/b0-system/b0/issues" 9license: ["ISC" "BSD-2-Clause"] 10tags: ["dev" "org:erratique" "org:b0-system" "build"] 11depends: ["ocaml" {>= "4.08.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "1.0.3"} 15 "cmdliner" {>= "1.0.2" & < "1.1.0"}] 16build: [["ocaml" "pkg/pkg.ml" "build" "--dev-pkg" "%{dev}%"]] 17url { 18 src: "https://erratique.ch/software/b0/releases/b0-0.0.2.tbz" 19 checksum: "sha512=78fd9e53b84cf5d6bf497adaf4b6d7d974134044318639cdfe5e01c7faaa8d987d04769abe3b3b1cbdb937132e21d8723dc185cd3c68433a793278907a8e757e"} 20description: """ 21WARNING this package is unstable and work in progress, do not depend on it. 22 23B0 describes software construction and deployments using modular and 24customizable definitions written in OCaml. 25 26B0 describes: 27 28* Build environments. 29* Software configuration, build and testing. 30* Source and binary deployments. 31* Software life-cycle procedures. 32 33B0 also provides the B00 build library which provides abitrary build 34abstraction with reliable and efficient incremental rebuilds. The B00 35library can be – and has been – used on its own to devise domain 36specific build systems. 37 38B0 is distributed under the ISC license. It depends on [cmdliner][cmdliner]. 39 40[cmdliner]: https://erratique.ch/software/cmdliner"""