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
1.8 KiB
43 lines
1.8 KiB
package("libbigwig") |
|
set_homepage("https://github.com/dpryan79/libBigWig") |
|
set_description("A C library for handling bigWig files") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/dpryan79/libBigWig/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/dpryan79/libBigWig.git") |
|
|
|
add_versions("0.4.7", "8e057797011d93fa00e756600898af4fe6ca2d48959236efc9f296abe94916d9") |
|
|
|
add_configs("curl", {description = "Enable CURL support", default = false, type = "boolean"}) |
|
add_configs("zlib_ng", {description = "Link to zlib-ng instead of zlib", default = false, type = "boolean"}) |
|
|
|
if is_plat("linux") then |
|
add_syslinks("m") |
|
end |
|
|
|
add_deps("cmake") |
|
|
|
on_load(function (package) |
|
if package:config("curl") then |
|
package:add("deps", "libcurl") |
|
end |
|
package:add("deps", (package:config("zlib_ng") and "zlib-ng" or "zlib")) |
|
end) |
|
|
|
on_install("linux", "macosx", "bsd", "mingw", "msys", "android", "iphoneos", "cross", function (package) |
|
local configs = {} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) |
|
table.insert(configs, "-DWITH_ZLIBNG=" .. (package:config("zlib_ng") and "ON" or "OFF")) |
|
if package:config("curl") then |
|
table.insert(configs, "-DWITH_CURL=ON") |
|
else |
|
table.insert(configs, "-DWITH_CURL=OFF") |
|
package:add("defines", "NOCURL") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("bwOpen", {includes = "libbigwig/bigWig.h", {configs = {languages = "c11"}}})) |
|
end)
|
|
|