Skip to content

Commit

Permalink
libcbor: add package (#4972)
Browse files Browse the repository at this point in the history
* libcbor: add package

* fix asan
  • Loading branch information
star-hengxing authored Aug 24, 2024
1 parent 664c2b2 commit 7ef5993
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions packages/l/libcbor/xmake.lua
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 7ef5993

Please sign in to comment.