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.
43 lines
2.1 KiB
43 lines
2.1 KiB
package("hwloc") |
|
|
|
set_homepage("https://www.open-mpi.org/software/hwloc/") |
|
set_description("Portable Hardware Locality (hwloc)") |
|
set_license("BSD-3-Clause") |
|
|
|
if is_plat("windows") then |
|
if is_arch("x86") then |
|
add_urls("https://download.open-mpi.org/release/hwloc/v$(version).zip", {version = function (version) |
|
return format("%d.%d/hwloc-win32-build-%s", version:major(), version:minor(), version) |
|
end}) |
|
add_versions("2.5.0", "0ff33ef99b727a96fcca8fd510e41f73444c5e9ea2b6c475a64a2d9a294f2973") |
|
add_versions("2.7.1", "217d508f715d42932c6d52e5cf5eb3559d9691d6bb77c34f00b3dcb6517c58e5") |
|
elseif is_arch("x64") then |
|
add_urls("https://download.open-mpi.org/release/hwloc/v$(version).zip", {version = function (version) |
|
return format("%d.%d/hwloc-win64-build-%s", version:major(), version:minor(), version) |
|
end}) |
|
add_versions("2.5.0", "b64f5ebe534d1ad57cdd4b18ab4035389b68802a97464c1295005043075309ea") |
|
add_versions("2.7.1", "31031eb09f7d8bfaaa069e537ec26374269dddd5b1f1a368c1ed6593849be5b1") |
|
end |
|
else |
|
add_urls("https://download.open-mpi.org/release/hwloc/v$(version).tar.gz", {version = function (version) |
|
return format("%d.%d/hwloc-%s", version:major(), version:minor(), version) |
|
end}) |
|
add_versions("2.5.0", "38aa8102faec302791f6b4f0d23960a3ffa25af3af6af006c64dbecac23f852c") |
|
add_versions("2.7.1", "4cb0a781ed980b03ad8c48beb57407aa67c4b908e45722954b9730379bc7f6d5") |
|
end |
|
|
|
add_configs("shared", {description = "Build shared library.", default = true, type = "boolean", readonly = true}) |
|
|
|
on_install("windows", function (package) |
|
os.cp("bin", package:installdir()) |
|
os.cp("include", package:installdir()) |
|
os.cp("lib/*|*.a", package:installdir("lib")) |
|
end) |
|
|
|
on_install("macosx", "linux", function (package) |
|
import("package.tools.autoconf").install(package) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("hwloc_get_api_version", {includes = "hwloc.h"})) |
|
end)
|
|
|