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.

63 lines
3.0 KiB

package("python")
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
6 years ago
add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).arm64.zip", {alias = "py2"})
add_versions("py2:2.7.15", "b9d8157fe2ca58f84d29a814bedf1d304d2277ad02f0930acd22e2ce7367b77e")
else
6 years ago
add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).win32.zip", {alias = "py2"})
add_versions("py2:2.7.15", "f34e2555c4fde5d7d746e6a0bbfc9151435f3f5c3eaddfc046ec0993b7cc9660")
end
if winos.version():gt("winxp") then
if os.arch() == "x64" then
add_urls("https://www.python.org/ftp/python/$(version)/python-$(version)-embed-amd64.zip", {alias = "py3"})
add_versions("py3:3.7.0", "0cc08f3c74c0112abc2adafd16a534cde12fe7c7aafb42e936d59fd3ab08fcdb")
else
add_urls("https://www.python.org/ftp/python/$(version)/python-$(version)-embed-win32.zip", {alias = "py3"})
add_versions("py3:3.7.0", "9596b23a8db1f945c2e26fe0dc1743e33f3700b4b708c68ea202cf2ac761a736")
end
else
if os.arch() == "x64" then
add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).arm64.zip", {alias = "py3"})
add_versions("py3:3.3.4", "a83bf90b28f8b44b99c3524a34ab18f21a59999e07c107da19b031869fb42af1")
else
add_urls("https://gitlab.com/xmake-mirror/python-releases/raw/master/python-$(version).win32.zip", {alias = "py3"})
add_versions("py3:3.3.4", "c9843d585e30da1c7c85663543b2f6a1f68621e02d288abc5b5e54361d93ccd6")
end
end
else
set_urls("https://www.python.org/ftp/python/$(version)/Python-$(version).tgz")
add_versions("2.7.15", "18617d1f15a380a919d517630a9cd85ce17ea602f9bbdc58ddc672df4b0239db")
6 years ago
add_versions("3.7.0", "85bb9feb6863e04fb1700b018d9d42d1caac178559ffa453d7e6a436e259fd0d")
end
6 years ago
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)
6 years ago
local installdir = package:installdir("share", package:name(), package:version_str())
6 years ago
os.cp("*", installdir)
6 years ago
if package:version_str():startswith("2.") then
6 years ago
os.cp("python.exe", path.join(installdir, "python2.exe"))
6 years ago
else
os.cp("python.exe", path.join(installdir, "python3.exe"))
end
end)
on_install("macosx", "linux", function (package)
6 years ago
import("package.tools.autoconf").install(package)
end)
6 years ago
on_test(function (package)
os.vrun("python --version")
end)