123456789101112131415161718192021222324252627282930313233 |
- opam-version: "1.2"
- name: "oclaunch"
- version: "0.3.0-rc1"
- maintainer: "Leo <leowzukw@oclaunch.eu.org>"
- authors: "Leo <leowzukw@oclaunch.eu.org>"
- homepage: "http://www.oclaunch.eu.org"
- bug-reports: "http://s.oclaunch.eu.org/bug"
- license: "CeCILL"
- dev-repo: "git@gitlab.com:WzukW/oclaunch.git"
- build-test: [
- ["./configure" "--enable-tests" "--prefix=%{prefix}%"]
- [make "test"]
- ]
- build: [
- ["./configure" "--disable-tests" "--prefix=%{prefix}%"]
- [make]
- ]
- install: [make "install"]
- remove: ["ocamlfind" "remove" "oclaunch"]
- depends: [
- "ocamlbuild" { build }
- "atdgen" { build & >= "1.9.1" }
- "yojson" { build }
- "base-threads" { build }
- "core" { build & >= "112.35.00"}
- "textutils" { build }
- "re2" { build }
- "ocamlfind" { build }
- "ounit" { test }
- "alcotest" { test }
- ]
- available: [ocaml-version >= "4.03.0"]
|