xmake.lua 2.2 KB

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