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.
32 lines
1.5 KiB
32 lines
1.5 KiB
4 years ago
|
package("hdf5")
|
||
|
|
||
|
set_homepage("https://www.hdfgroup.org/solutions/hdf5/")
|
||
|
set_description("High-performance data management and storage suite")
|
||
|
set_license("BSD-3-Clause")
|
||
|
|
||
|
add_urls("https://hdf-wordpress-1.s3.amazonaws.com/wp-content/uploads/manual/HDF5/HDF5_$(version).tar.gz", {version = function (version) return version:gsub("%.", "_") .. "/source/hdf5-" .. version end})
|
||
|
add_versions("1.12.0", "a62dcb276658cb78e6795dd29bf926ed7a9bc4edf6e77025cd2c689a8f97c17a")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
if is_plat("linux") then
|
||
|
add_syslinks("dl")
|
||
|
end
|
||
|
on_install("windows", "macosx", "linux", function (package)
|
||
|
local configs = {"-DHDF5_GENERATE_HEADERS=OFF", "-DBUILD_TESTING=OFF", "-DHDF5_BUILD_EXAMPLES=OFF"}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
||
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
table.insert(configs, "-DONLY_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
table.insert(configs, "-DBUILD_STATIC_LIBS=" .. (package:config("shared") and "OFF" or "ON"))
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
package:addenv("PATH", "bin")
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
if package:config("shared") then
|
||
|
os.vrun("h5diff-shared --version")
|
||
|
else
|
||
|
os.vrun("h5diff --version")
|
||
|
end
|
||
|
assert(package:has_cfuncs("H5open", {includes = "H5public.h"}))
|
||
|
end)
|