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.
 
 
 

44 lines
1.7 KiB

package("libtins")
set_homepage("http://libtins.github.io/")
set_description("High-level, multiplatform C++ network packet sniffing and crafting library.")
set_urls("https://github.com/mfontanini/libtins.git")
add_versions("2021.6.23", "24ac038c302b2dff1cd47b104893ee60965d108f")
add_deps("cmake", "boost")
if is_plat("windows") then
add_syslinks("ws2_32", "iphlpapi")
end
on_load("windows", function (package)
if not package:config("shared") then
package:add("defines", "TINS_STATIC")
end
end)
on_install("linux", "windows", "macosx", function (package)
local configs = {"-DLIBTINS_BUILD_EXAMPLES=OFF", "-DLIBTINS_BUILD_TESTS=OFF",
"-DLIBTINS_ENABLE_PCAP=OFF",
"-DLIBTINS_ENABLE_DOT11=OFF",
"-DLIBTINS_ENABLE_WPA2=OFF",
"-DLIBTINS_ENABLE_TCPIP=OFF",
"-DLIBTINS_ENABLE_ACK_TRACKER=OFF",
"-DLIBTINS_ENABLE_TCP_STREAM_CUSTOM_DATA=OFF",
"-DLIBTINS_ENABLE_WPA2_CALLBACKS=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
table.insert(configs, "-DLIBTINS_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DCMAKE_INSTALL_LIBDIR=lib")
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <string>
using namespace Tins;
void test() {
std::string name = NetworkInterface::default_interface().name();
printf("%s\n", name.c_str());
}
]]}, {configs = {languages = "c++11"}, includes = {"tins/tins.h"}}))
end)