1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
opam-version: "1.2"
name: "omake"
maintainer: "Gerd Stolpmann <gerd@gerd-stolpmann.de>"
authors: [
"Aleksey Nogin"
"Jason Hickey"
"Gerd Stolpmann"
]
license: "GPL2"
dev-repo: "https://github.com/ocaml-omake/omake.git"
homepage: "http://projects.camlcity.org/projects/omake.html"
bug-reports: "https://github.com/ocaml-omake/issues"
build: [
["./configure" "-prefix" "%{prefix}%"]
[make]
]
install: [
[make "install"]
]
remove: [
[ "rm" "-f" "%{prefix}%/bin/omake" ]
[ "rm" "-f" "%{prefix}%/bin/osh" ]
[ "rm" "-rf" "%{prefix}%/lib/omake" ]
]
depends: ["ocamlfind"]
available: [ ocaml-version >= "4.03.0" ]
|