xmake.lua 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. package("icu4c")
  2. set_homepage("http://site.icu-project.org/")
  3. set_description("C/C++ libraries for Unicode and globalization.")
  4. add_urls("https://github.com/unicode-org/icu/releases/download/release-$(version)-src.tgz", {version = function (version)
  5. return (version:gsub("%.", "-")) .. "/icu4c-" .. (version:gsub("%.", "_"))
  6. end})
  7. add_versions("76.1", "dfacb46bfe4747410472ce3e1144bf28a102feeaa4e3875bac9b4c6cf30f4f3e")
  8. add_versions("75.1", "cb968df3e4d2e87e8b11c49a5d01c787bd13b9545280fc6642f826527618caef")
  9. add_versions("73.2", "818a80712ed3caacd9b652305e01afc7fa167e6f2e94996da44b90c2ab604ce1")
  10. add_versions("73.1", "a457431de164b4aa7eca00ed134d00dfbf88a77c6986a10ae7774fc076bb8c45")
  11. add_versions("72.1", "a2d2d38217092a7ed56635e34467f92f976b370e20182ad325edea6681a71d68")
  12. add_versions("71.1", "67a7e6e51f61faf1306b6935333e13b2c48abd8da6d2f46ce6adca24b1e21ebf")
  13. add_versions("70.1", "8d205428c17bf13bb535300669ed28b338a157b1c01ae66d31d0d3e2d47c3fd5")
  14. add_versions("69.1", "4cba7b7acd1d3c42c44bb0c14be6637098c7faf2b330ce876bc5f3b915d09745")
  15. add_versions("68.2", "c79193dee3907a2199b8296a93b52c5cb74332c26f3d167269487680d479d625")
  16. add_versions("68.1", "a9f2e3d8b4434b8e53878b4308bd1e6ee51c9c7042e2b1a376abefb6fbb29f2d")
  17. add_versions("64.2", "627d5d8478e6d96fc8c90fed4851239079a561a6a8b9e48b0892f24e82d31d6c")
  18. add_patches("69.1", path.join(os.scriptdir(), "patches", "69.1", "replace-py-3.patch"), "ae27a55b0e79a8420024d6d349a7bae850e1dd403a8e1131e711c405ddb099b9")
  19. add_patches("70.1", path.join(os.scriptdir(), "patches", "70.1", "replace-py-3.patch"), "6469739da001721122b62af513370ed62901caf43af127de3f27ea2128830e35")
  20. if is_plat("mingw") then
  21. add_patches(">=69.1", path.join(os.scriptdir(), "patches", "72.1", "mingw.patch"), "9ddbe7f691224ccf69f8c0218f788f0a39ab8f1375cc9aad2cc92664ffcf46a5")
  22. end
  23. if is_plat("mingw") and is_subhost("msys") then
  24. add_extsources("pacman::icu")
  25. elseif is_plat("linux") then
  26. add_extsources("pacman::icu", "apt::libicu-dev")
  27. elseif is_plat("macosx") then
  28. add_extsources("brew::icu4c")
  29. end
  30. add_configs("tools", {description = "Build tools.", default = false, type = "boolean"})
  31. if is_plat("windows") then
  32. add_configs("shared", {description = "Build shared library.", default = true, type = "boolean", readonly = true})
  33. end
  34. if is_plat("linux") then
  35. add_syslinks("dl")
  36. end
  37. on_load(function (package)
  38. if package:is_cross() then
  39. package:add("deps", "icu4c~host", {kind = "binary", private = true})
  40. else
  41. package:addenv("PATH", "bin")
  42. end
  43. if package:is_plat("windows") then
  44. if package:config("tools") then
  45. package:add("deps", "python 3.x", {kind = "binary"})
  46. end
  47. if package:has_runtime("MTd", "MDd") then
  48. wprint("MTd/MDd runtime force to use debug package")
  49. package:config_set("debug", true)
  50. end
  51. end
  52. local libsuffix = package:is_debug() and package:is_plat("mingw", "windows") and "d" or ""
  53. package:add("links", "icutu" .. libsuffix, "icuio" .. libsuffix)
  54. if package:is_plat("mingw", "windows") then
  55. package:add("links", "icuin" .. libsuffix, "icuuc" .. libsuffix, "icudt" .. libsuffix)
  56. else
  57. package:add("links", "icui18n" .. libsuffix, "icuuc" .. libsuffix, "icudata" .. libsuffix)
  58. end
  59. end)
  60. on_install("windows", function (package)
  61. import("package.tools.msbuild")
  62. if package:has_runtime("MT", "MTd") then
  63. local files = {
  64. "source/common/common.vcxproj",
  65. "source/i18n/i18n.vcxproj",
  66. "source/extra/uconv/uconv.vcxproj",
  67. "source/io/io.vcxproj",
  68. "source/stubdata/stubdata.vcxproj",
  69. }
  70. for _, vcxproj in ipairs(files) do
  71. io.replace(vcxproj, "MultiThreadedDLL", "MultiThreaded", {plain = true})
  72. io.replace(vcxproj, "MultiThreadedDebugDLL", "MultiThreadedDebug", {plain = true})
  73. end
  74. end
  75. local projectfiles = os.files("source/**.vcxproj")
  76. local sln = path.join("source", "allinone", "allinone.sln")
  77. table.join2(projectfiles, sln, os.files("source/**.props"))
  78. local suffix = package:is_arch("arm.*") and "ARM" or ""
  79. if package:is_arch64() then
  80. suffix = suffix .. "64"
  81. end
  82. if package:is_binary() then
  83. local configs = {
  84. sln,
  85. "/p:Configuration=Release",
  86. "/target:pkgdata,genrb"
  87. }
  88. msbuild.build(package, configs, {upgrade = projectfiles})
  89. os.vcp("bin" .. suffix .. "/*", package:installdir("bin"))
  90. return
  91. elseif package:is_cross() then
  92. local arch_prev = package:arch()
  93. package:arch_set(os.arch())
  94. local host_suffix = package:is_arch("arm.*") and "ARM" or ""
  95. if package:is_arch64() then
  96. host_suffix = host_suffix .. "64"
  97. end
  98. package:arch_set(arch_prev)
  99. os.vcp(package:dep("icu4c"):installdir("bin/*"), "bin" .. host_suffix .. "/")
  100. end
  101. local configs = {
  102. sln,
  103. "/p:SkipUWP=True",
  104. "/p:_IsNativeEnvironment=true",
  105. }
  106. if not package:config("tools") then
  107. table.insert(configs, "/target:common,i18n,uconv,io,stubdata")
  108. end
  109. msbuild.build(package, configs, {upgrade = projectfiles})
  110. os.vcp("include", package:installdir())
  111. os.vcp("bin" .. suffix .. "/*", package:installdir("bin"))
  112. os.vcp("lib" .. suffix .. "/*", package:installdir("lib"))
  113. end)
  114. on_install("@!windows and !wasm and !iphoneos", function (package)
  115. import("package.tools.autoconf")
  116. os.cd("source")
  117. if is_host("macosx") then
  118. -- On Mac OS X, the echo command does not support the -n option
  119. -- @see https://unicode-org.atlassian.net/browse/ICU-22418
  120. local mkfiles = {"Makefile.in"}
  121. table.join2(mkfiles, os.files("config/mh-*"))
  122. for _, mkfile in ipairs(mkfiles) do
  123. io.replace(mkfile, "@echo%s+-n%s+\"", "@printf \"") -- replace @echo -n with @printf
  124. end
  125. end
  126. local configs = {"--disable-samples", "--disable-tests"}
  127. if package:debug() then
  128. table.insert(configs, "--enable-debug")
  129. table.insert(configs, "--disable-release")
  130. end
  131. if package:config("shared") then
  132. table.insert(configs, "--enable-shared")
  133. table.insert(configs, "--disable-static")
  134. else
  135. table.insert(configs, "--disable-shared")
  136. table.insert(configs, "--enable-static")
  137. end
  138. if package:is_plat("mingw") then
  139. table.insert(configs, "--with-data-packaging=dll")
  140. end
  141. if package:is_cross() then
  142. table.insert(configs, "--with-cross-build=" .. path.unix(package:dep("icu4c"):installdir()))
  143. end
  144. local envs = {}
  145. local cxxflags = "-std=gnu++17"
  146. if package:is_plat("linux") and package:config("pic") ~= false then
  147. envs = autoconf.buildenvs(package, {cxflags = "-fPIC", cxxflags = cxxflags})
  148. else
  149. envs = autoconf.buildenvs(package, {cxxflags = cxxflags})
  150. end
  151. -- suppress ar errors when passing --toolchain=clang
  152. envs.ARFLAGS = nil
  153. if package:is_cross() and not envs.CXX then
  154. envs.CXX = path.unix(package:build_getenv("cxx"))
  155. end
  156. autoconf.install(package, configs, {envs = envs})
  157. if not package:is_cross() then
  158. os.trycp("config/icucross.mk", package:installdir("config"))
  159. os.trycp("config/icucross.inc", package:installdir("config"))
  160. os.trycp("bin/icupkg*", package:installdir("bin"))
  161. end
  162. end)
  163. on_test(function (package)
  164. if package:is_library() then
  165. assert(package:has_cfuncs("ucnv_convert", {includes = "unicode/ucnv.h"}))
  166. end
  167. end)