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.
51 lines
1.9 KiB
51 lines
1.9 KiB
package("depot_tools") |
|
set_kind("binary") |
|
set_homepage("https://chromium.googlesource.com/chromium/tools/depot_tools") |
|
set_description("Tools for working with Chromium development") |
|
|
|
add_urls("https://github.com/xmake-mirror/depot_tools.git", |
|
"https://chromium.googlesource.com/chromium/tools/depot_tools.git") |
|
add_versions("2022.2.1", "8a6d00f116d6de9d5c4e92acb519fd0859c6449a") |
|
|
|
on_load(function (package) |
|
package:addenv("PATH", ".") |
|
package:addenv("PATH", "python-bin") |
|
package:addenv("DEPOT_TOOLS_UPDATE", "0") |
|
package:addenv("DEPOT_TOOLS_METRICS", "0") |
|
package:addenv("DEPOT_TOOLS_WIN_TOOLCHAIN", "0") |
|
end) |
|
|
|
on_install("linux", "macosx", "windows", function (package) |
|
import("core.base.global") |
|
os.cp("*", package:installdir()) |
|
os.cd(package:installdir()) |
|
-- maybe we need set proxy, e.g. `xmake g --proxy=http://127.0.0.1:xxxx` |
|
-- @note we must use http proxy instead of socks5 proxy |
|
local envs = {} |
|
local proxy = global.get("proxy") |
|
if proxy then |
|
envs.HTTP_PROXY = proxy |
|
envs.HTTPS_PROXY = proxy |
|
envs.ALL_PROXY = proxy |
|
end |
|
-- we need fetch some files when running gclient for the first time |
|
if is_host("windows") then |
|
os.vrunv("gclient.bat", {"--verbose"}, {envs = envs}) |
|
else |
|
os.vrunv("sh", {"./gclient", "--verbose"}, {envs = envs}) |
|
end |
|
end) |
|
|
|
on_test(function (package) |
|
import("core.base.global") |
|
os.vrun("python3 --version") |
|
os.vrun("ninja --version") |
|
local envs = {} |
|
local proxy = global.get("proxy") |
|
if proxy then |
|
envs.HTTP_PROXY = proxy |
|
envs.HTTPS_PROXY = proxy |
|
envs.ALL_PROXY = proxy |
|
end |
|
os.vrunv(is_host("windows") and "gclient.bat" or "gclient", {"--version"}, {envs = envs}) |
|
end)
|
|
|