package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.1 KiB
26 lines
1.1 KiB
3 years ago
|
package("wolfssl")
|
||
|
set_homepage("https://www.wolfssl.com")
|
||
|
set_description("The wolfSSL library is a small, fast, portable implementation of TLS/SSL for embedded devices to the cloud. wolfSSL supports up to TLS 1.3!")
|
||
|
set_license("GPL-2.0")
|
||
|
|
||
|
add_urls("https://github.com/wolfSSL/wolfssl/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/wolfSSL/wolfssl.git")
|
||
|
add_versions("v5.3.0-stable", "1a3bb310dc01d3e73d9ad91b6ea8249d081016f8eef4ae8f21d3421f91ef1de9")
|
||
|
|
||
|
add_deps("cmake")
|
||
|
|
||
|
on_install(function (package)
|
||
|
local configs = {}
|
||
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
||
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
||
|
local ldflags
|
||
|
if package:is_plat("android") then
|
||
|
ldflags = "-llog"
|
||
|
end
|
||
|
import("package.tools.cmake").install(package, configs, {ldflags = ldflags})
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cincludes("wolfssl/ssl.h"))
|
||
|
end)
|