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.
50 lines
2.0 KiB
50 lines
2.0 KiB
5 months ago
|
package("aws-lc")
|
||
|
set_homepage("https://github.com/aws/aws-lc")
|
||
|
set_description("AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project.")
|
||
|
|
||
|
add_urls("https://github.com/aws/aws-lc/archive/refs/tags/$(version).tar.gz",
|
||
|
"https://github.com/aws/aws-lc.git")
|
||
|
|
||
|
add_versions("v1.31.0", "f2dfe0ef8fe21482b6795da01a1b226f826e9a084833ff8d5371a02f9623c150")
|
||
|
|
||
|
add_configs("jitter", {description = "Enable FIPS entropy source: CPU Jitter", default = false, type = "boolean"})
|
||
|
add_configs("tools", {description = "Build tools", default = false, type = "boolean"})
|
||
|
|
||
|
add_deps("cmake")
|
||
|
if is_plat("windows") then
|
||
|
add_deps("nasm")
|
||
|
end
|
||
|
|
||
|
add_links("ssl", "crypto")
|
||
|
|
||
|
if is_plat("windows", "mingw") then
|
||
|
add_syslinks("ws2_32")
|
||
|
elseif is_plat("linux", "bsd") then
|
||
|
add_syslinks("pthread", "dl", "m")
|
||
|
end
|
||
|
|
||
|
on_install(function (package)
|
||
|
if package:config("shared") and package:is_plat("windows") then
|
||
|
package:add("defines", "BORINGSSL_SHARED_LIBRARY")
|
||
|
end
|
||
|
|
||
|
local configs = {
|
||
|
"-DBUILD_TESTING=OFF",
|
||
|
"-DCMAKE_INSTALL_INCLUDEDIR=include",
|
||
|
"-DBUILD_LIBSSL=ON",
|
||
|
"-DDISABLE_GO=ON", "-DDISABLE_PERL=ON"
|
||
|
}
|
||
|
|
||
|
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, "-DBUILD_LIBSSL=ON")
|
||
|
table.insert(configs, "-DENABLE_FIPS_ENTROPY_CPU_JITTER=" .. (package:config("jitter") and "ON" or "OFF"))
|
||
|
table.insert(configs, "-DBUILD_TOOL=" .. (package:config("tools") and "ON" or "OFF"))
|
||
|
import("package.tools.cmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("SSL_new", {includes = "openssl/ssl.h"}))
|
||
|
end)
|