xmake.lua 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package("aqt")
  2. set_kind("binary")
  3. set_homepage("https://github.com/miurahr/aqtinstall")
  4. set_description("aqt: Another (unofficial) Qt CLI Installer on multi-platforms")
  5. set_license("MIT")
  6. add_configs("shared", {description = "Download shared binaries.", default = true, type = "boolean", readonly = true})
  7. if is_host("windows") and (os.arch() == "x64" or os.arch() == "x86") then
  8. add_configs("runtimes", {description = "Set compiler runtimes.", default = "MD", readonly = true})
  9. if os.arch() == "x86" then
  10. add_urls("https://github.com/miurahr/aqtinstall/releases/download/v$(version)/aqt_x86.exe")
  11. add_versions("3.1.17", "d3abbd3378907f2e3ebf3af3387590245bb04175e1a720d04463b047732e1cd2")
  12. add_versions("3.1.6", "093b536fab2e3726a792cdb60292313c0c8950b8aa9b56ccdeff7adb1146f964")
  13. add_versions("3.0.2", "aac5d8949eed3f231bfc589736afe0f88372dc590182c8b3a2bed7c78952b944")
  14. add_versions("2.0.6", "b980985cfeb1cefef1d2ebab91ae4e648873a27fae8831deff8144661480c56a")
  15. else
  16. add_urls("https://github.com/miurahr/aqtinstall/releases/download/v$(version)/aqt_x64.exe")
  17. add_versions("3.1.17", "02acc10c6317a2a9f76464d5c26b129b836531f81938b2b222498c495d69fcdb")
  18. add_versions("3.1.6", "4f7e3fbc2d155f903ed9597b7929201681ffb7628e97765511cc7efa8a60f3e6")
  19. add_versions("3.0.2", "96e46eca0d18a899db00a26facd20c799f2400645aef6445d49f4bd0aeab0a3f")
  20. add_versions("2.0.6", "b0ad07fe8fd2c094425449f3053598959e467833dadf509da948571259510078")
  21. end
  22. elseif is_host("macosx") and (os.arch() == "arm64" or os.arch() == "x86_64") then
  23. if os.arch() == "arm64" then
  24. add_urls("https://github.com/miurahr/aqtinstall/releases/download/v$(version)/aqt-macos")
  25. add_versions("3.1.17", "cb51decbc12500d2e3e4b743dd4abb86a91fd9f25a916cafe54572963acf0690")
  26. else
  27. add_urls("https://github.com/miurahr/aqtinstall/releases/download/v$(version)/aqt-macos")
  28. add_versions("3.1.17", "cb51decbc12500d2e3e4b743dd4abb86a91fd9f25a916cafe54572963acf0690")
  29. end
  30. else
  31. add_deps("7z")
  32. add_deps("python >=3.6", {kind="binary"})
  33. end
  34. on_install("@macosx", "@linux", "@windows", "@msys", function (package)
  35. if is_host("windows") and (os.arch() == "x64" or os.arch() == "x86") then
  36. os.cp(package:originfile(), path.join(package:installdir("bin"), "aqt.exe"))
  37. elseif is_host("macosx") and (os.arch() == "arm64" or os.arch() == "x86_64") then
  38. os.cp(package:originfile(), path.join(package:installdir("bin"), "aqt"))
  39. os.vrunv("chmod", {"+x", path.join(package:installdir("bin"), "aqt")})
  40. else
  41. -- ensurepip has been dropped in recent releases
  42. try {function () os.vrunv("python3", {"-m", "ensurepip"}) end}
  43. os.vrunv("python3", {"-m", "pip", "install", "-U", "pip"})
  44. os.vrunv("python3", {"-m", "pip", "install", "aqtinstall"})
  45. end
  46. end)
  47. on_test(function (package)
  48. os.vrun("aqt -h")
  49. end)