this repo has no description
1opam-version: "2.0"
2homepage: "https://github.com/ocaml-obuild/obuild"
3bug-reports: "https://github.com/ocaml-obuild/obuild/issues"
4dev-repo: "git+https://github.com/ocaml-obuild/obuild.git"
5authors: ["Vincent Hanquez" "Jerome Maloberti"]
6synopsis: "Simple package build system for OCaml"
7license: "BSD-2-Clause"
8description: """
9The goal is to make a very simple build system for users and developers
10of OCaml libraries and programs.
11
12Obuild acts as a building black box: users only declare what they want to
13build and with which sources; the build system will consistently
14build it.
15
16The design is based on Haskell's Cabal and borrows most of the layout
17and way of working, adapting parts where necessary to fully support OCaml."""
18
19maintainer: "jmaloberti@gmail.com"
20build: [
21 ["./bootstrap"]
22]
23depends: ["ocaml" "ocamlfind" {build}]
24url {
25 src: "https://github.com/ocaml-obuild/obuild/archive/obuild-v0.1.11.tar.gz"
26 checksum: [
27 "sha256=fc1decfd710acdc10db898b594bfbe7d1107f1cbef2aefebe9e1780e40ff23d4"
28 "md5=0df5359e3103ee2b52aa90eedc9c045e"
29 ]
30}