1234567891011121314151617181920212223242526272829 |
- package("libfyaml")
- set_homepage("https://github.com/pantoniou/libfyaml")
- set_description("Fully feature complete YAML parser and emitter, supporting the latest YAML spec and passing the full YAML testsuite.")
- set_license("MIT")
- add_urls("https://github.com/pantoniou/libfyaml/archive/refs/tags/$(version).tar.gz",
- "https://github.com/pantoniou/libfyaml.git")
- add_versions("v0.9", "927306fc85c7566904751766d36178650766b34e59ce56882eaa5b60f791668c")
- add_deps("cmake")
- on_install("linux", "macosx", "android", "iphoneos", "cross", function (package)
- if package:is_plat("android") then
- import("core.tool.toolchain")
- local ndk = toolchain.load("ndk", {plat = package:plat(), arch = package:arch()})
- local ndk_sdkver = ndk:config("ndk_sdkver")
- assert(ndk_sdkver and tonumber(ndk_sdkver) > 21, "package(libfyaml): need ndk api level > 21 for android")
- end
- local configs = {}
- 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"))
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:has_cfuncs("fy_library_version", {includes = "libfyaml.h"}))
- end)
|