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"] 6 7maintainer: "jmaloberti@gmail.com" 8build: [ 9 ["./bootstrap"] 10] 11synopsis: "simple package build system for OCaml" 12description: """ 13The goal is to make a very simple build system for users and developers 14of OCaml libraries and programs. 15 16Obuild acts as a building black box: users only declare what they want to 17build and with which sources; the build system will consistently 18build it. 19 20The design is based on Haskell's Cabal and borrows most of the layout 21and way of working, adapting parts where necessary to fully support OCaml.""" 22depends: ["ocaml" {< "5.0"}] 23conflicts: [ 24 "ocamlfind" {>= "1.8.0"} # does not support warning(..) = "..." in META files 25] 26url { 27 src: "https://github.com/ocaml-obuild/obuild/archive/obuild-v0.1.9.tar.gz" 28 checksum: [ 29 "sha256=f008fb0777a475eb4776d923d81397c6fb06f803f175cad41b6c057e3b63bfde" 30 "md5=63d08d56fb8cba245c05cc5b3b558ebd" 31 ] 32}