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.

74 lines
2.9 KiB

package("sockpp")
set_homepage("https://github.com/fpagliughi/sockpp")
set_description("Modern C++ socket library")
set_license("BSD-3-Clause")
add_urls("https://github.com/fpagliughi/sockpp/archive/refs/tags/$(version).tar.gz",
"https://github.com/fpagliughi/sockpp.git")
add_versions("v0.8.1", "a8aedff8bd8c1da530b91be650352008fddabc9f1df0d19701d76cbc359c8651")
add_versions("v0.8.3", "dcacfae173ae4a1e535078d3023d338c3eb170193fe1b82bc04138e9c02470ef")
add_versions("v1.0.0", "818477fae6eb29b9daacef71a3d0c494de9e48f6fd267a7fc5a4c332db211bc5")
add_patches(">=0.8.1", path.join(os.scriptdir(), "patches", "0.8.1", "strerror.patch"), "161796afa58b838a504cbee14f3db8b1bba451b54acb3165503966cad527cafe")
add_configs("openssl", {description = "Enable OpenSSL.", default = false, type = "boolean"})
add_configs("mbedtls", {description = "Enable mbedtls.", default = false, type = "boolean"})
if is_plat("windows", "mingw") then
add_syslinks("ws2_32")
end
if is_plat("linux") then
add_configs("can", {description = "Build SocketCAN support.", default = false, type = "boolean"})
end
add_deps("cmake")
on_load(function (package)
if package:config("openssl") then
package:add("deps", "openssl3")
elseif package:config("mbedtls") then
package:add("deps", "mbedtls")
end
end)
on_install(function (package)
local configs =
{
"-DSOCKPP_BUILD_EXAMPLES=OFF",
"-DSOCKPP_BUILD_TESTS=OFF",
"-DSOCKPP_BUILD_DOCUMENTATION=OFF",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
if package:config("shared") then
table.insert(configs, "-DSOCKPP_BUILD_SHARED=ON")
table.insert(configs, "-DSOCKPP_BUILD_STATIC=OFF")
else
table.insert(configs, "-DSOCKPP_BUILD_SHARED=OFF")
table.insert(configs, "-DSOCKPP_BUILD_STATIC=ON")
end
if package:is_plat("linux") then
table.insert(configs, "-DSOCKPP_BUILD_CAN=" .. (package:config("can") and "ON" or "OFF"))
end
if package:config("openssl") then
table.insert(configs, "-DSOCKPP_WITH_OPENSSL=ON")
elseif package:config("mbedtls") then
table.insert(configs, "-DSOCKPP_WITH_MBEDTLS=ON")
end
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <string>
#include <sockpp/tcp_connector.h>
using namespace std::chrono;
void test() {
std::string host = "localhost";
in_port_t port = 12345;
sockpp::tcp_connector conn({host, port}, seconds{5});
}
]]}, {configs = {languages = "c++14"}}))
end)