Ver código fonte

Add pcapplusplus (#4493)

* add pcapplusplus

* add pcapplusplus

* Update xmake.lua

* Update xmake.lua

* Update xmake.lua

---------

Co-authored-by: heheda123123 <[email protected]>
Co-authored-by: ruki <[email protected]>
xpxz 1 ano atrás
pai
commit
f3799e8734
1 arquivos alterados com 35 adições e 0 exclusões
  1. 35 0
      packages/p/pcapplusplus/xmake.lua

+ 35 - 0
packages/p/pcapplusplus/xmake.lua

@@ -0,0 +1,35 @@
+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_urls("https://github.com/seladb/PcapPlusPlus/archive/refs/tags/$(version).zip",
+             "https://github.com/seladb/PcapPlusPlus.git")
+
+    add_versions("v23.09", "f2b92d817df6138363be0d144a61716f8ecc43216f0008135da2e0e15727d35a")
+
+    add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
+
+    add_deps("cmake")
+    if is_plat("windows") then
+        add_syslinks("ws2_32")
+        add_deps("npcap_sdk")
+    end
+
+    on_install("windows", function (package)
+        local configs = {}
+        table.insert(configs, "-DPCAPPP_BUILD_EXAMPLES=OFF")
+        table.insert(configs, "-DPCAPPP_BUILD_TESTS=OFF")
+        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
+        import("package.tools.cmake").install(package, configs)
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            #include "pcapplusplus/IPv4Layer.h"
+            #include "pcapplusplus/Packet.h"
+            #include "pcapplusplus/PcapFileDevice.h"
+            void test() {
+                pcpp::PcapFileReaderDevice reader("1_packet.pcap");
+            }
+        ]]}, {configs = {languages = "c++17"}}))
+    end)