xmake.lua 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.2", "7506c88640ae4bcf9b2f50edc6eb32c47b367df9da3dfa24654456b3b45be3a9")
  8. add_versions("3.3.1", "ca6b05725184866b9e5874329e98be22cbbdc1e733789e08b55b088be207484a")
  9. add_versions("3.3", "fca59b0d7fae2b9165c223cdce68e45dbf41e21e5e53190d8b214218b8353380")
  10. if is_plat("macosx", "linux") then
  11. add_syslinks("pthread")
  12. end
  13. on_install("windows", "macosx", "linux", function (package)
  14. io.gsub("config.h.in", "#undef (.-)\n", "${define %1}\n")
  15. io.writefile("xmake.lua", [[
  16. add_rules("mode.debug", "mode.release")
  17. includes("@builtin/check")
  18. if is_plat("macosx", "linux") then
  19. set_configvar("HAVE_PTHREAD_H", 1)
  20. end
  21. configvar_check_ctypes("HAVE_LONG_LONG_INT", "long long int")
  22. configvar_check_cfuncs("HAVE_SNPRINTF", "snprintf", {includes = "stdio.h"})
  23. configvar_check_cfuncs("HAVE_VASPRINTF", "vasprintf", {includes = "stdio.h", defines = "_GNU_SOURCE"})
  24. configvar_check_cfuncs("HAVE_VSNPRINTF", "vsnprintf", {includes = "stdio.h"})
  25. configvar_check_cfuncs("HAVE_STRDUP", "strdup", {includes = "string.h"})
  26. configvar_check_cfuncs("HAVE_STRLCAT", "strlcat", {includes = "string.h"})
  27. configvar_check_cfuncs("HAVE_STRLCPY", "strlcpy", {includes = "string.h"})
  28. target("mxml")
  29. set_kind("$(kind)")
  30. add_files("mxml-*.c")
  31. add_configfiles("config.h.in")
  32. add_includedirs("$(buildir)")
  33. add_headerfiles("mxml.h")
  34. if is_plat("macosx", "linux") then
  35. add_syslinks("pthread")
  36. end
  37. ]])
  38. import("package.tools.xmake").install(package)
  39. end)
  40. on_test(function (package)
  41. assert(package:has_cfuncs("mxmlLoadFile", {includes = "mxml.h"}))
  42. end)