opam 1016 B

1234567891011121314151617181920212223242526272829303132333435
  1. opam-version: "2.0"
  2. name: "haxe"
  3. version: "4.1.1"
  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. "dune" {>= "1.11"}
  25. "camlp5" {build}
  26. "sedlex" {>= "2.0"}
  27. "xml-light"
  28. "extlib" {>= "1.7.6"}
  29. "ptmap" {>= "2.0.0"}
  30. "sha"
  31. "conf-libpcre"
  32. "conf-zlib"
  33. "conf-mbedtls"
  34. "conf-neko"
  35. ]