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.
 
 
 

117 lines
5.9 KiB

package("openexr")
set_homepage("https://www.openexr.com/")
set_description("OpenEXR provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.")
set_license("BSD-3-Clause")
add_urls("https://github.com/AcademySoftwareFoundation/openexr/archive/refs/tags/$(version).tar.gz",
"https://github.com/AcademySoftwareFoundation/openexr.git")
add_versions("v3.3.2", "5013e964de7399bff1dd328cbf65d239a989a7be53255092fa10b85a8715744d")
add_versions("v3.3.1", "58aad2b32c047070a52f1205b309bdae007442e0f983120e4ff57551eb6f10f1")
add_versions("v3.3.0", "58b00f50d2012f3107573c4b7371f70516d2972c2b301a50925e1b4a60a7be6f")
add_versions("v3.2.4", "81e6518f2c4656fdeaf18a018f135e96a96e7f66dbe1c1f05860dd94772176cc")
add_versions("v3.2.3", "f3f6c4165694d5c09e478a791eae69847cadb1333a2948ca222aa09f145eba63")
add_versions("v2.5.3", "6a6525e6e3907715c6a55887716d7e42d09b54d2457323fcee35a0376960bebf")
add_versions("v2.5.5", "59e98361cb31456a9634378d0f653a2b9554b8900f233450f2396ff495ea76b3")
add_versions("v2.5.7", "36ecb2290cba6fc92b2ec9357f8dc0e364b4f9a90d727bf9a57c84760695272d")
add_versions("v3.1.0", "8c2ff765368a28e8210af741ddf91506cef40f1ed0f1a08b6b73bb3a7faf8d93")
add_versions("v3.1.1", "045254e201c0f87d1d1a4b2b5815c4ae54845af2e6ec0ab88e979b5fdb30a86e")
add_versions("v3.1.3", "6f70a624d1321319d8269a911c4032f24950cde52e76f46e9ecbebfcb762f28c")
add_versions("v3.1.4", "cb019c3c69ada47fe340f7fa6c8b863ca0515804dc60bdb25c942c1da886930b")
add_versions("v3.1.5", "93925805c1fc4f8162b35f0ae109c4a75344e6decae5a240afdfce25f8a433ec")
add_versions("v3.2.1", "61e175aa2203399fb3c8c2288752fbea3c2637680d50b6e306ea5f8ffdd46a9b")
add_configs("build_both", {description = "Build both static library and shared library. (deprecated)", default = false, type = "boolean"})
add_configs("tools", {description = "Build tools", default = false, type = "boolean"})
if is_plat("linux", "bsd") then
add_syslinks("pthread")
end
add_includedirs("include/OpenEXR", "include")
add_deps("cmake")
add_deps("zlib", "libdeflate")
if on_check then
on_check("windows", function (package)
local vs_toolset = package:toolchain("msvc"):config("vs_toolset")
if vs_toolset and package:is_arch("arm.*") then
local vs_toolset_ver = import("core.base.semver").new(vs_toolset)
local minor = vs_toolset_ver:minor()
assert(minor and minor >= 30, "package(openexr) dep(libdeflate) requires vs_toolset >= 14.3")
end
end)
end
on_load(function (package)
local ver = package:version()
local suffix = format("-%d_%d", ver:major(), ver:minor())
local links = {}
if ver:ge("3.0") then
package:add("deps", "imath")
links = {"OpenEXRUtil", "OpenEXR", "OpenEXRCore", "IlmThread", "Iex"}
else
links = {"IlmImfUtil", "IlmImf", "IlmThread", "Imath", "Half", "IexMath", "Iex"}
end
for _, link in ipairs(links) do
package:add("links", link .. suffix)
end
if package:is_plat("windows") and package:config("shared") then
package:add("defines", "OPENEXR_DLL")
end
end)
on_install(function (package)
io.replace("CMakeLists.txt", "add_subdirectory(website/src)", "", {plain = true})
local configs = {
"-DBUILD_TESTING=OFF",
"-DINSTALL_OPENEXR_EXAMPLES=OFF",
"-DOPENEXR_BUILD_EXAMPLES=OFF",
"-DINSTALL_OPENEXR_DOCS=OFF",
"-DBUILD_WEBSITE=OFF",
"-DCMAKE_DEBUG_POSTFIX=''",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
if package:is_plat("windows") then
table.insert(configs, "-DCMAKE_COMPILE_PDB_OUTPUT_DIRECTORY=''")
end
table.insert(configs, "-DOPENEXR_BUILD_TOOLS=" .. (package:config("tools") and "ON" or "OFF"))
table.insert(configs, "-DOPENEXR_BUILD_UTILS=" .. (package:config("tools") and "ON" or "OFF"))
if package:version():ge("3.0") then
if package:is_plat("windows") and package:version():le("3.1.4") then
local vs_toolset = import("core.tool.toolchain").load("msvc"):config("vs_toolset")
if vs_toolset then
local toolsetver = vs_toolset:match("(%d+%.%d+)%.%d+")
assert(tonumber(toolsetver) < 14.31, "This version is incompatible with MSVC 14.31.")
end
end
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
else
if package:config("build_both") then
table.insert(configs, "-DBUILD_SHARED_LIBS=ON")
table.insert(configs, "-DOPENEXR_BUILD_BOTH_STATIC_SHARED=ON")
table.insert(configs, "-DILMBASE_BUILD_BOTH_STATIC_SHARED=ON")
else
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DOPENEXR_BUILD_BOTH_STATIC_SHARED=OFF")
table.insert(configs, "-DILMBASE_BUILD_BOTH_STATIC_SHARED=OFF")
end
table.insert(configs, "-DPYILMBASE_ENABLE=OFF")
end
import("package.tools.cmake").install(package, configs)
if package:is_plat("windows") and package:is_debug() then
os.vcp(path.join(package:buildir(), "bin/*.pdb"), package:installdir("bin"))
os.vcp(path.join(package:buildir(), "src/lib/*.pdb"), package:installdir("lib"))
end
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
void test() {
Imf::RgbaInputFile file("hello.exr");
}
]]}, {configs = {languages = "c++14"}, includes = {"ImfRgbaFile.h"}}))
end)