libcbor: add package (#4972)

* libcbor: add package

* fix asan
pull/5035/head
star9029 3 months ago committed by GitHub
parent 664c2b2407
commit 7ef599319a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 23
      packages/l/libcbor/xmake.lua

@ -0,0 +1,23 @@
package("libcbor")
set_homepage("https://github.com/PJK/libcbor")
set_description("CBOR protocol implementation for C")
set_license("MIT")
add_urls("https://github.com/pjk/libcbor/archive/refs/tags/$(version).tar.gz",
"https://github.com/pjk/libcbor.git")
add_versions("v0.11.0", "89e0a83d16993ce50651a7501355453f5250e8729dfc8d4a251a78ea23bb26d7")
add_deps("cmake")
on_install(function (package)
local configs = {"-DWITH_EXAMPLES=OFF", "-DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DSANITIZE=" .. (package:config("asan") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
end)
on_test(function (package)
assert(package:has_cfuncs("cbor_new_definite_map", {includes = "cbor.h"}))
end)
Loading…
Cancel
Save