package("pcapplusplus")
set_homepage("https://github.com/seladb/PcapPlusPlus")
set_description("PcapPlusPlus is a multiplatform C++ library for capturing, parsing and crafting of network packets.")
set_license("Unlicense")
set_urls("https://github.com/seladb/PcapPlusPlus/archive/refs/tags/$(version).zip",
"https://github.com/seladb/PcapPlusPlus.git")
add_versions("v25.05", "0e7a1ec30b08f73d490c71dae5e8f17593311275f6052dcda4f9f7d77910070e")
add_versions("v24.09", "0a9d80d09a906c08a1df5f5a937134355c7cb3fc8a599bf1a0f10002cf0285be")
add_versions("v23.09", "f2b92d817df6138363be0d144a61716f8ecc43216f0008135da2e0e15727d35a")
add_patches("v24.09", "patches/v24.09/vla.patch", "8c380468c78118b6d85f6b3856cd49c4d890fd326dde3400b8c47c01c885cef4")
add_patches("v24.09", "patches/v24.09/explicit-override.patch", "d4ff15e920ea4996f6d3105e898e42d75cfab47b7e930467442ae356a361cf25")
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
add_configs("zstd", {description = "Support compile with zstd", default = false, type = "boolean"})
add_configs("winpcap", {description = "Support compile with winpcap", default = false, type = "boolean"})
add_configs("log_level", {description = "Compile time log level", default = 3, type = "number"})
add_links("Pcap++", "Packet++", "Common++")
if is_plat("windows", "mingw") then
add_syslinks("ws2_32", "iphlpapi")
elseif is_plat("macosx") then
add_frameworks("CoreFoundation", "SystemConfiguration")
elseif is_plat("linux", "bsd") then
add_syslinks("pthread")
end
add_deps("cmake")
on_load(function (package)
if package:config("zstd") then
package:add("deps", "zstd")
end
if package:is_plat("windows") and not package:is_arch("arm.*") then
if package:config("winpcap") then
package:add("deps", "winpcap")
else
package:add("deps", "npcap_sdk")
end
elseif package:is_plat("linux", "macosx", "android", "bsd") then
package:add("deps", "libpcap")
else
package:add("deps", "npcap_sdk")
end
end)
on_install("windows", "mingw", "linux", "macosx", "android", "bsd", function (package)
local configs = {
"-DPCAPPP_BUILD_EXAMPLES=OFF",
"-DPCAPPP_BUILD_TESTS=OFF"
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DLIGHT_PCAPNG_ZSTD=" .. (package:config("zstd") and "ON" or "OFF"))
table.insert(configs, "-DPCAPPP_LOG_LEVEL=" .. package:config("log_level"))
for _, cmakefile in ipairs(os.files("**/CMakeLists.txt")) do
io.replace(cmakefile, "COMPILE_WARNING_AS_ERROR ON", "COMPILE_WARNING_AS_ERROR OFF")
end
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <vector>
#include "pcapplusplus/IPv4Layer.h"
#include "pcapplusplus/Packet.h"
#include "pcapplusplus/PcapFileDevice.h"
#include "pcapplusplus/PcapLiveDeviceList.h"
void testPcapFileReaderDevice() {
pcpp::PcapFileReaderDevice reader("1_packet.pcap");
}
void testPcapLiveDeviceList() {
std::vector<pcpp::PcapLiveDevice *> devList =
pcpp::PcapLiveDeviceList::getInstance().getPcapLiveDevicesList();
}
]]}, {configs = {languages = "c++17"}}))
end)