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.
57 lines
2.6 KiB
57 lines
2.6 KiB
package("libevent") |
|
set_homepage("https://libevent.org/") |
|
set_description("Event notification library") |
|
set_license("BSD-3-Clause") |
|
|
|
add_urls("https://github.com/libevent/libevent/releases/download/release-$(version)-stable/libevent-$(version)-stable.tar.gz", |
|
"https://github.com/libevent/libevent.git") |
|
|
|
add_versions("2.1.12", "92e6de1be9ec176428fd2367677e61ceffc2ee1cb119035037a27d346b0403bb") |
|
|
|
add_configs("openssl", {description = "Build with OpenSSL library.", default = false, type = "boolean"}) |
|
add_configs("mbedtls", {description = "Build with mbedtls library.", default = false, type = "boolean"}) |
|
|
|
if is_plat("windows", "mingw") then |
|
add_syslinks("ws2_32", "advapi32", "iphlpapi") |
|
end |
|
|
|
add_deps("cmake") |
|
|
|
on_load(function (package) |
|
if package:config("openssl") then |
|
package:add("deps", "openssl3") |
|
end |
|
if package:config("mbedtls") then |
|
package:add("deps", "mbedtls") |
|
end |
|
end) |
|
|
|
on_install("!android and (!mingw or mingw|!i386)", function (package) |
|
io.replace("CMakeLists.txt", "advapi32", "advapi32 crypt32", {plain = true}) |
|
if package:gitref() or package:version():eq("2.1.12") then |
|
io.replace("cmake/LibeventConfig.cmake.in", |
|
'get_filename_component(_INSTALL_PREFIX "${LIBEVENT_CMAKE_DIR}/../../.." ABSOLUTE)', |
|
'get_filename_component(_INSTALL_PREFIX "${LIBEVENT_CMAKE_DIR}/../.." ABSOLUTE)', |
|
{plain = true}) |
|
io.replace("cmake/LibeventConfig.cmake.in", "NO_DEFAULT_PATH)", ")", {plain = true}) |
|
end |
|
|
|
local configs = { |
|
"-DEVENT__DISABLE_TESTS=ON", |
|
"-DEVENT__DISABLE_REGRESS=ON", |
|
"-DEVENT__DISABLE_SAMPLES=ON", |
|
} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DEVENT__LIBRARY_TYPE=" .. (package:config("shared") and "SHARED" or "STATIC")) |
|
table.insert(configs, "-DEVENT__DISABLE_OPENSSL=" .. (package:config("openssl") and "OFF" or "ON")) |
|
table.insert(configs, "-DEVENT__DISABLE_MBEDTLS=" .. (package:config("mbedtls") and "OFF" or "ON")) |
|
if package:is_plat("windows") then |
|
table.insert(configs, "-DEVENT__MSVC_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF")) |
|
table.insert(configs, "-DCMAKE_COMPILE_PDB_OUTPUT_DIRECTORY=''") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("event_base_new", {includes = "event2/event.h"})) |
|
end)
|
|
|