xmake.lua 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. package("mxml")
  2. set_homepage("https://www.msweet.org/mxml/")
  3. set_description("Mini-XML is a tiny XML library that you can use to read and write XML and XML-like data files in your application without requiring large non-standard libraries.")
  4. set_license("Apache-2.0")
  5. add_urls("https://github.com/michaelrsweet/mxml/releases/download/v$(version)/mxml-$(version).zip")
  6. add_urls("https://github.com/michaelrsweet/mxml.git")
  7. add_versions("4.0.3", "a6201ad26ff3d14a84bc0027646ee89aeee858f0c9e69c166bb9705ba1eb55e7")
  8. add_versions("4.0.2", "7506c88640ae4bcf9b2f50edc6eb32c47b367df9da3dfa24654456b3b45be3a9")
  9. add_versions("3.3.1", "ca6b05725184866b9e5874329e98be22cbbdc1e733789e08b55b088be207484a")
  10. add_versions("3.3", "fca59b0d7fae2b9165c223cdce68e45dbf41e21e5e53190d8b214218b8353380")
  11. if is_plat("macosx", "linux") then
  12. add_syslinks("pthread")
  13. end
  14. on_install("windows", "macosx", "linux", function (package)
  15. io.gsub("config.h.in", "#undef (.-)\n", "${define %1}\n")
  16. io.writefile("xmake.lua", [[
  17. add_rules("mode.debug", "mode.release")
  18. includes("@builtin/check")
  19. if is_plat("macosx", "linux") then
  20. set_configvar("HAVE_PTHREAD_H", 1)
  21. end
  22. configvar_check_ctypes("HAVE_LONG_LONG_INT", "long long int")
  23. configvar_check_cfuncs("HAVE_SNPRINTF", "snprintf", {includes = "stdio.h"})
  24. configvar_check_cfuncs("HAVE_VASPRINTF", "vasprintf", {includes = "stdio.h", defines = "_GNU_SOURCE"})
  25. configvar_check_cfuncs("HAVE_VSNPRINTF", "vsnprintf", {includes = "stdio.h"})
  26. configvar_check_cfuncs("HAVE_STRDUP", "strdup", {includes = "string.h"})
  27. configvar_check_cfuncs("HAVE_STRLCAT", "strlcat", {includes = "string.h"})
  28. configvar_check_cfuncs("HAVE_STRLCPY", "strlcpy", {includes = "string.h"})
  29. target("mxml")
  30. set_kind("$(kind)")
  31. add_files("mxml-*.c")
  32. add_configfiles("config.h.in")
  33. add_includedirs("$(buildir)")
  34. add_headerfiles("mxml.h")
  35. if is_plat("macosx", "linux") then
  36. add_syslinks("pthread")
  37. end
  38. ]])
  39. import("package.tools.xmake").install(package)
  40. end)
  41. on_test(function (package)
  42. assert(package:has_cfuncs("mxmlLoadFile", {includes = "mxml.h"}))
  43. end)