add commata packages (#4569)

* add commata packages

* impoove the script of commata

* add license and change the way of os.cp writing

* add commit url

* Update xmake.lua

---------

Co-authored-by: benny WU <benny066567@163.com>
Co-authored-by: ruki <waruqi@gmail.com>
pull/4573/head
benny066567 5 months ago committed by GitHub
parent cbd315bec5
commit 4eff67fba4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 22
      packages/c/commata/xmake.lua

@ -0,0 +1,22 @@
package("commata")
set_kind("library", {headeronly = true})
set_homepage("https://furfurylic.github.io/commata/CommataSpecification.xml")
set_description("Just another header-only C++17 CSV parser")
set_license("Unlicense")
add_urls("https://github.com/furfurylic/commata/archive/refs/tags/$(version)-rc.2.zip",
"https://github.com/furfurylic/commata.git")
add_versions("v1.0.0", "5f9ef542d10d5d04d296e609ae8931e09a157761c86630d71b2f397c6a205a75")
on_install(function (package)
os.cp("include", package:installdir())
end)
on_test(function (package)
assert(package:check_cxxsnippets({test = [[
using commata::stored_table;
void test() {
stored_table table;
}
]]}, {configs = {languages = "c++17"}, includes = "commata/stored_table.hpp"}))
end)
Loading…
Cancel
Save