-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6149 from UnixJunkie/latest_obuild
added packages/obuild/obuild.0.1.8
- Loading branch information
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
simple package build system for OCaml | ||
|
||
The goal is to make a very simple build system for users and developers | ||
of OCaml libraries and programs. | ||
|
||
Obuild acts as a building black box: users only declare what they want to | ||
build and with which sources; the build system will consistently | ||
build it. | ||
|
||
The design is based on Haskell's Cabal and borrows most of the layout | ||
and way of working, adapting parts where necessary to fully support OCaml. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
opam-version: "1.2" | ||
|
||
homepage: "https://github.com/ocaml-obuild/obuild" | ||
bug-reports: "https://github.com/ocaml-obuild/obuild/issues" | ||
dev-repo: "https://github.com/ocaml-obuild/obuild.git" | ||
authors: ["Vincent Hanquez" "Jerome Maloberti"] | ||
|
||
maintainer: "[email protected]" | ||
build: [ | ||
["./bootstrap"] | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
archive: "https://github.com/ocaml-obuild/obuild/archive/obuild-v0.1.8.tar.gz" | ||
checksum: "5178265fec699c2c7da1cd7bd739996c" |