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 14patches: ["lib_build_OCaml.om.diff"] 15 16build: [ 17 ["./configure" "-prefix" "%{prefix}%"] 18 [make] 19] 20 21install: [ 22 [make "install"] 23] 24 25remove: [ 26 [ "rm" "-f" "%{prefix}%/bin/omake" ] 27 [ "rm" "-f" "%{prefix}%/bin/osh" ] 28 [ "rm" "-rf" "%{prefix}%/lib/omake" ] 29] 30 31depends: [ 32 "ocaml" {>= "4.03.0" & < "5.0"} 33 "ocamlfind" 34] 35synopsis: "Build system designed for scalability and portability" 36flags: light-uninstall 37url { 38 src: "http://download.camlcity.org/download/omake-0.10.3.tar.gz" 39 checksum: [ 40 "sha256=ff3107e9459615ea6526309c533b04815eef60692a20dcd3a6169f5860786d1d" 41 "md5=e0cefca108852a5db6ecfc16742af047" 42 ] 43 mirrors: "http://download2.camlcity.org/download/omake-0.10.3.tar.gz" 44} 45extra-source "lib_build_OCaml.om.diff" { 46 src: 47 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/omake/lib_build_OCaml.om.diff" 48 checksum: [ 49 "sha256=2c0d7ed91246b29e21c8022ceed692e34588de3dcab71f1227c464fa01e10e17" 50 "md5=04f4ee4d33cf137fc0ac0c8f880bbc06" 51 ] 52}