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.
37 lines
1.6 KiB
37 lines
1.6 KiB
package("python3") |
|
|
|
set_kind("binary") |
|
set_homepage("https://www.python.org/") |
|
set_description("The python programming language.") |
|
|
|
if is_host("windows") then |
|
if os.arch() == "x64" then |
|
set_urls("https://www.python.org/ftp/python/$(version)/python-$(version)-embed-amd64.zip") |
|
add_versions("3.7.0", "0cc08f3c74c0112abc2adafd16a534cde12fe7c7aafb42e936d59fd3ab08fcdb") |
|
else |
|
set_urls("https://www.python.org/ftp/python/$(version)/python-$(version)-embed-win32.zip") |
|
add_versions("3.7.0", "9596b23a8db1f945c2e26fe0dc1743e33f3700b4b708c68ea202cf2ac761a736") |
|
end |
|
else |
|
set_urls("https://www.python.org/ftp/python/$(version)/Python-$(version).tgz") |
|
add_versions("3.7.0", "85bb9feb6863e04fb1700b018d9d42d1caac178559ffa453d7e6a436e259fd0d") |
|
end |
|
|
|
on_load(function (package) |
|
if is_host("windows") then |
|
package:addenv("PATH", path.join("share", package:name(), package:version_str())) |
|
else |
|
package:addenv("PATH", path.join("share", package:name(), package:version_str(), "bin")) |
|
end |
|
end) |
|
|
|
on_install("windows", function (package) |
|
local installdir = package:installdir("share", package:name(), package:version_str()) |
|
os.cp("*", installdir) |
|
os.cp("python.exe", path.join(installdir, "python3.exe")) |
|
end) |
|
|
|
on_install("macosx", "linux", function (package) |
|
import("package.tools.autoconf").install(package, {prefix = package:installdir("share", package:name(), package:version_str())}) |
|
end) |
|
|
|
|