2
0

xmake.lua 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. package("mujs")
  2. set_homepage("http://mujs.com/")
  3. set_description("An embeddable Javascript interpreter in C.")
  4. add_urls("https://mujs.com/downloads/mujs-$(version).tar.gz")
  5. add_urls("https://github.com/ccxvii/mujs/archive/refs/tags/$(version).tar.gz",
  6. "https://github.com/ccxvii/mujs.git")
  7. add_versions("1.3.5", "78a311ae4224400774cb09ef5baa2633c26971513f8b931d3224a0eb85b13e0b")
  8. add_versions("1.3.4", "c015475880f6a382e706169c94371a7dd6cc22078832f6e0865af8289c2ef42b")
  9. if is_plat("linux", "bsd") then
  10. add_syslinks("m")
  11. end
  12. add_includedirs("include", "include/mujs")
  13. on_install(function (package)
  14. io.writefile("xmake.lua", [[
  15. add_rules("mode.release", "mode.debug")
  16. target("mujs")
  17. set_kind("$(kind)")
  18. add_files("js*.c", "utf*.c", "regexp.c")
  19. add_headerfiles("*.h", {prefixdir = "mujs"})
  20. if is_plat("windows") and is_kind("shared") then
  21. add_rules("utils.symbols.export_all")
  22. end
  23. ]])
  24. import("package.tools.xmake").install(package)
  25. end)
  26. on_test(function (package)
  27. assert(package:has_cfuncs("js_newstate", {includes = "mujs/mujs.h"}))
  28. end)