opam 829 B

123456789101112131415161718192021222324252627282930313233
  1. opam-version: "1.2"
  2. name: "oclaunch"
  3. version: "0.3.0-rc1"
  4. maintainer: "Leo <leowzukw@oclaunch.eu.org>"
  5. authors: "Leo <leowzukw@oclaunch.eu.org>"
  6. homepage: "http://www.oclaunch.eu.org"
  7. bug-reports: "http://s.oclaunch.eu.org/bug"
  8. license: "CeCILL"
  9. dev-repo: "git@gitlab.com:WzukW/oclaunch.git"
  10. build-test: [
  11. ["./configure" "--enable-tests" "--prefix=%{prefix}%"]
  12. [make "test"]
  13. ]
  14. build: [
  15. ["./configure" "--disable-tests" "--prefix=%{prefix}%"]
  16. [make]
  17. ]
  18. install: [make "install"]
  19. remove: ["ocamlfind" "remove" "oclaunch"]
  20. depends: [
  21. "ocamlbuild" { build }
  22. "atdgen" { build & >= "1.9.1" }
  23. "yojson" { build }
  24. "base-threads" { build }
  25. "core" { build & >= "112.35.00"}
  26. "textutils" { build }
  27. "re2" { build }
  28. "ocamlfind" { build }
  29. "ounit" { test }
  30. "alcotest" { test }
  31. ]
  32. available: [ocaml-version >= "4.03.0"]