this repo has no description
1opam-version: "2.0" 2maintainer: "Gerd Stolpmann <gerd@gerd-stolpmann.de>" 3authors: [ 4 "Aleksey Nogin" 5 "Jason Hickey" 6 "Gerd Stolpmann" 7] 8 9license: "GPL-2.0-only" 10dev-repo: "git+https://github.com/ocaml-omake/omake.git" 11homepage: "http://projects.camlcity.org/projects/omake.html" 12bug-reports: "https://github.com/ocaml-omake/issues" 13 14build: [ 15 ["./configure" "-prefix" "%{prefix}%"] 16 [make] 17] 18 19install: [ 20 [make "install"] 21] 22 23remove: [ 24 [ "rm" "-f" "%{prefix}%/bin/omake" ] 25 [ "rm" "-f" "%{prefix}%/bin/osh" ] 26 [ "rm" "-rf" "%{prefix}%/lib/omake" ] 27] 28 29depends: [ 30 "ocaml" {>= "4.03.0" & < "5.0"} 31 "ocamlfind" 32] 33conflicts: [ "base-effects" ] 34synopsis: "Build system designed for scalability and portability" 35flags: light-uninstall 36url { 37 src: "http://download.camlcity.org/download/omake-0.10.5.tar.gz" 38 checksum: [ 39 "md5=48b3507d467bc86d961d56a5e2e78aaf" 40 "sha512=e8dcc8c489164746c6ba4d77537aeb88e75ce2fc98c7275c53851ac31a3de5123ebdac9f6193f9f9bcd184311e63c6272fe48b0a3bd9625f7581cdbb022d058c" 41 ] 42 mirrors: "http://download2.camlcity.org/download/omake-0.10.5.tar.gz" 43}