浏览代码

arduinojson: add package (#2981)

star9029 1 年之前
父节点
当前提交
7ebd8e511c
共有 1 个文件被更改,包括 27 次插入0 次删除
  1. 27 0
      packages/a/arduinojson/xmake.lua

+ 27 - 0
packages/a/arduinojson/xmake.lua

@@ -0,0 +1,27 @@
+package("arduinojson")
+    set_kind("library", {headeronly = true})
+    set_homepage("https://arduinojson.org")
+    set_description("📟 JSON library for Arduino and embedded C++. Simple and efficient.")
+    set_license("MIT")
+
+    add_urls("https://github.com/bblanchon/ArduinoJson/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/bblanchon/ArduinoJson.git")
+
+    add_versions("v6.21.4", "9551af9282372f6e64cf4009fc43be7f2df6eb96fe9c0aab44d4eed217d09747")
+
+    add_deps("cmake")
+
+    on_install(function (package)
+        import("package.tools.cmake").install(package, {"-DBUILD_TESTING=OFF"})
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            #include <ArduinoJson.h>
+            void test() {
+                char json[] = "{\"sensor\":\"gps\",\"time\":1351824120,\"data\":[48.756080,2.302038]}";
+                DynamicJsonDocument doc(1024);
+                deserializeJson(doc, json);
+            }
+        ]]}, {configs = {languages = "c++11"}}))
+    end)