Przeglądaj źródła

Add package cpp-linenoise (#2416)

Yiheng Wu 2 lat temu
rodzic
commit
c83a462b8c
1 zmienionych plików z 20 dodań i 0 usunięć
  1. 20 0
      packages/c/cpp-linenoise/xmake.lua

+ 20 - 0
packages/c/cpp-linenoise/xmake.lua

@@ -0,0 +1,20 @@
+package("cpp-linenoise")
+    set_kind("library", {headeronly = true})
+    set_homepage("https://github.com/yhirose/cpp-linenoise")
+    set_description("A single file multi-platform (Unix, Windows) C++ header-only linenoise-based readline library.")
+    set_license("BSD-2-Clause")
+
+    add_urls("https://github.com/yhirose/cpp-linenoise.git")
+    add_versions("2021.11.05", "4cd89adfbc07cedada1aa32be12991828919d91b")
+
+    on_install(function (package)
+        os.cp("linenoise.hpp", package:installdir("include"))
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            void test() {
+                linenoise::SetMultiLine(true);
+            }
+        ]]}, {includes = {"linenoise.hpp"}}))
+    end)