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.
 
 
 

56 lines
2.2 KiB

package("tbox")
set_homepage("http://www.tboox.org")
set_description("A glib-like multi-platform c library")
add_urls("https://github.com/tboox/tbox/archive/$(version).zip")
add_urls("https://github.com/tboox/tbox.git")
add_urls("https://gitlab.com/tboox/tbox.git")
add_urls("https://gitee.com/tboox/tbox.git")
add_versions("v1.6.2", "5236090b80374b812c136c7fe6b8c694418cbfc9c0a820ec2ba35ff553078c7b")
add_versions("v1.6.3", "bc5a957cdb1610c19f0cf94497ad114a0e01fd7d569777e9cb2133c513ef6baa")
add_configs("micro", {description = "Compile micro core library for the embed system.", default = false, type = "boolean"})
for _, name in ipairs({"xml", "zip", "hash", "regex", "object", "charset", "database", "coroutine"}) do
add_configs(name, {description = "Enable the " .. name .. " module.", default = false, type = "boolean"})
end
for _, name in ipairs({"zlib", "mysql", "sqlite3", "openssl", "polarssl", "mbedtls", "pcre2", "pcre"}) do
add_configs(name, {description = "Enable the " .. name .. " package.", default = false, type = "boolean"})
end
if is_plat("windows") then
add_syslinks("ws2_32")
elseif is_plat("mingw") then
add_syslinks("ws2_32", "pthread")
elseif not is_plat("android") then
add_syslinks("pthread")
end
on_load(function (package)
if package:debug() then
package:add("defines", "__tb_debug__")
end
end)
on_install(function (package)
local configs = {demo = false}
if package:config("micro") then
config.micro = true
end
for _, name in ipairs({"xml", "zip", "hash", "regex", "object", "charset", "database", "coroutine"}) do
if package:config(name) then
configs[name] = true
end
end
for _, name in ipairs({"zlib", "mysql", "sqlite3", "openssl", "polarssl", "mbedtls", "pcre2", "pcre"}) do
if package:config(name) then
configs[name] = true
end
end
import("package.tools.xmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("tb_exit", {includes = "tbox/tbox.h"}))
end)