opam 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. opam-version: "2.0"
  2. name: "haxe"
  3. version: "4.0.0"
  4. synopsis: "Multi-target universal programming language"
  5. description: """
  6. Haxe is an open source toolkit based on a modern,
  7. high level, static-typed programming language, a cross-compiler,
  8. a complete cross-platform standard library and ways to access each
  9. platform's native capabilities."""
  10. maintainer: ["Haxe Foundation <[email protected]>" "Andy Li <[email protected]>"]
  11. authors: "Haxe Foundation <[email protected]>"
  12. homepage: "https://haxe.org/"
  13. bug-reports: "https://github.com/HaxeFoundation/haxe/issues"
  14. license: ["GPL2+" "MIT"]
  15. dev-repo: "git+https://github.com/HaxeFoundation/haxe.git"
  16. build: [
  17. [make]
  18. ]
  19. install: [make "install" "INSTALL_DIR=%{prefix}%"]
  20. remove: [make "uninstall" "INSTALL_DIR=%{prefix}%"]
  21. depends: [
  22. "ocaml" {>= "4.02"}
  23. "ocamlfind" {build}
  24. "camlp5" {build}
  25. "sedlex" {build}
  26. "ppx_tools_versioned" {build & != "5.2.1"} #https://github.com/alainfrisch/sedlex/issues/64
  27. "xml-light" {build}
  28. "extlib" {build & >= "1.7.6"}
  29. "ptmap" {build}
  30. "sha" {build}
  31. "conf-libpcre"
  32. "conf-zlib"
  33. "conf-neko"
  34. ]