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.
46 lines
2.4 KiB
46 lines
2.4 KiB
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/v$(version)-stable.tar.gz", |
|
"https://github.com/wolfSSL/wolfssl.git") |
|
|
|
add_versions("5.6.2", "eb252f6ca8d8dcc2a05926dfafbc42250fea78e5e07b4689c3fc26ad69d2dd73") |
|
add_versions("5.3.0", "1a3bb310dc01d3e73d9ad91b6ea8249d081016f8eef4ae8f21d3421f91ef1de9") |
|
|
|
add_configs("openssl_extra", {description = "WOLFSSL_OPENSSLEXTRA", default = false, type = "boolean"}) |
|
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) |
|
|
|
add_deps("cmake") |
|
|
|
on_install("windows", function (package) |
|
local configs = {"wolfssl64.sln"} |
|
local mode = package:debug() and "Debug" or "Release" |
|
local arch = package:is_arch("x64") and "x64" or "Win32" |
|
table.insert(configs, "/p:Configuration=" .. mode) |
|
table.insert(configs, "/p:Platform=" .. arch) |
|
table.insert(configs, "-t:wolfssl") |
|
import("package.tools.msbuild").build(package, configs, {upgrade = {"wolfssl64.sln", "wolfssl.vcxproj"}}) |
|
os.cp("wolfssl", package:installdir("include")) |
|
os.cp(path.join(mode, arch, "*"), package:installdir("lib")) |
|
end) |
|
|
|
on_install("linux", "macos", "mingw", function (package) |
|
local cmake_cflags = 'set(CMAKE_C_FLAGS "-Wall -Wextra -Wno-unused -Werror ${CMAKE_C_FLAGS}")' |
|
local new_cmake_cflags = 'set(CMAKE_C_FLAGS "-Wall -Wextra -Wno-unused ${CMAKE_C_FLAGS}")' |
|
io.replace("CMakeLists.txt", cmake_cflags, new_cmake_cflags, {plain = true}) |
|
local configs = {"-DWOLFSSL_EXAMPLES=no", "-DWOLFSSL_CRYPT_TESTS=no"} |
|
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")) |
|
table.insert(configs, "-DWOLFSSL_OPENSSLEXTRA=" .. (package:config("openssl_extra") and "yes" or "no")) |
|
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)
|
|
|