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.
31 lines
1.8 KiB
31 lines
1.8 KiB
package("ngtcp2") |
|
set_homepage("https://github.com/ngtcp2/ngtcp2") |
|
set_description("ngtcp2 project is an effort to implement IETF QUIC protocol") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/ngtcp2/ngtcp2/releases/download/v$(version)/ngtcp2-$(version).tar.gz") |
|
add_versions("1.4.0", "163e26e6e7531b8bbcd7ec53d2c6b4ff3cb7d3654fde37b091e3174d37a8acd7") |
|
add_versions("1.3.0", "7d4244ac15a83a0f908ff810ba90a3fcd8352fb0020a6f9176e26507c9d3c3e4") |
|
add_versions("1.2.0", "303ae7d23721b3631ae52dbe3e05cced9ac59aa49d3eb21f8cdb1548a0522be8") |
|
add_versions("1.1.0", "051d23ce0128453687c240e6fa249e65134350b2b1cb1b5eadf49817849ec74d") |
|
add_versions("0.1.0", "9a5266544d083c332746450344ebd6c8d6bf3c75c492a54c79abc56f2c47415d") |
|
|
|
add_deps("cmake") |
|
|
|
on_install("macosx", "linux", "windows", "android", "mingw", function (package) |
|
local configs = {"-DENABLE_OPENSSL=OFF", "-DBUILD_TESTING=OFF"} |
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) |
|
table.insert(configs, "-DENABLE_SHARED_LIB=" .. (package:config("shared") and "ON" or "OFF")) |
|
table.insert(configs, "-DENABLE_STATIC_LIB=" .. (package:config("shared") and "OFF" or "ON")) |
|
io.replace("CMakeLists.txt", "add_subdirectory(third-party)", "", {plain = true}) |
|
io.replace("CMakeLists.txt", "add_subdirectory(examples)", "", {plain = true}) |
|
io.replace("CMakeLists.txt", "add_subdirectory(tests)", "", {plain = true}) |
|
if not package:config("shared") then |
|
package:add("defines", "NGTCP2_STATICLIB") |
|
end |
|
import("package.tools.cmake").install(package, configs) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:has_cfuncs("ngtcp2_conn_client_new_versioned", {includes = "ngtcp2/ngtcp2.h"})) |
|
end)
|
|
|