package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.0 KiB
23 lines
1.0 KiB
package("python-launcher") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.python.org/") |
|
set_description("The python programming language.") |
|
|
|
if is_arch("x86", "i386") or os.arch() == "x86" then |
|
add_urls("https://github.com/xmake-mirror/python-windows/releases/download/$(version)/python-launcher-$(version).win32.zip") |
|
add_versions("3.9.6", "73d712aaca09d7ada78bcf26dfc3346f655b4b1fed5b459133ce564b9c5f5663") |
|
add_versions("3.9.10", "36f445e1569f4b0647080c7603c9a5f635f131b7f2ee5bf29d6c02e38d235b34") |
|
else |
|
add_urls("https://github.com/xmake-mirror/python-windows/releases/download/$(version)/python-launcher-$(version).win64.zip") |
|
add_versions("3.9.6", "fc2a54f47f07a193265cb844c0e1b165682c71a1655e92eb3c44f25bacc84b8a") |
|
add_versions("3.9.10", "70df88a455fe2c87c62c0817decb7f54f198ff31ade093ce4d8ecc8cfd452b3f") |
|
end |
|
|
|
on_install("@windows", "@msys", "@cygwin", function (package) |
|
os.cp("*", package:installdir("bin")) |
|
end) |
|
|
|
on_test(function (package) |
|
os.vrun("py -0p") |
|
end)
|
|
|