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.
 
 
 

49 lines
1.8 KiB

package("lcms")
set_homepage("https://www.littlecms.com/")
set_description("A free, open source, CMM engine.")
set_license("MIT")
add_urls("https://github.com/mm2/Little-CMS/archive/$(version).tar.gz")
add_versions("2.11", "478c9c3938d7a91b1171de4616f8b04308a8676d73eadc19505b7ace41327f28")
add_versions("2.12", "e501f1482fc424550ef3abbf86bf1c66090e1661249e89552d39ed5bf935df66")
on_load("windows", function (package)
if package:config("shared") then
package:add("defines", "CMS_DLL")
end
end)
on_install("windows", function (package)
io.writefile("xmake.lua", [[
add_rules("mode.debug", "mode.release")
target("lcms2")
set_kind("$(kind)")
add_files("src/*.c")
if is_kind("shared") then
add_defines("CMS_DLL_BUILD")
end
add_includedirs("include")
add_headerfiles("include/(*.h)")
]])
import("package.tools.xmake").install(package, {kind = package:config("shared") and "shared" or "static"})
end)
on_install("macosx", "linux", "wasm", function (package)
local configs = {}
if package:config("shared") then
table.insert(configs, "--enable-shared=yes")
table.insert(configs, "--enable-static=no")
else
table.insert(configs, "--enable-static=yes")
table.insert(configs, "--enable-shared=no")
end
if package:config("pic") then
table.insert(configs, "--with-pic")
end
import("package.tools.autoconf").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("cmsXYZ2xyY", {includes = "lcms2.h"}))
end)