1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-17 13:05:24 +00:00

add ppc64 builds

This commit is contained in:
Darien Raymond 2018-11-01 12:19:58 +01:00
parent fdea9474a7
commit 598b4ee639
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -303,3 +303,35 @@ pkg_zip(
out = "v2ray-linux-s390x.zip",
mappings = gen_mappings("linux", "s390x"),
)
pkg_zip(
name = "v2ray_linux_ppc64_package",
srcs = [
"//main:v2ray_linux_ppc64",
"//main:v2ray_linux_ppc64_sig",
"@v2ray_ext//tools/control/main:v2ctl_linux_ppc64",
"@v2ray_ext//tools/control/main:v2ctl_linux_ppc64_sig",
":config_json",
":systemd",
":doc",
":geodata",
],
out = "v2ray-linux-ppc64.zip",
mappings = gen_mappings("linux", "ppc64"),
)
pkg_zip(
name = "v2ray_linux_ppc64le_package",
srcs = [
"//main:v2ray_linux_ppc64le",
"//main:v2ray_linux_ppc64le_sig",
"@v2ray_ext//tools/control/main:v2ctl_linux_ppc64le",
"@v2ray_ext//tools/control/main:v2ctl_linux_ppc64le_sig",
":config_json",
":systemd",
":doc",
":geodata",
],
out = "v2ray-linux-ppc64le.zip",
mappings = gen_mappings("linux", "ppc64le"),
)