12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- package("nghttp3")
- set_homepage("https://github.com/ngtcp2/nghttp3")
- set_description("HTTP/3 library written in C")
- set_license("MIT")
- add_urls("https://github.com/ngtcp2/nghttp3/archive/refs/tags/$(version).tar.gz",
- "https://github.com/ngtcp2/nghttp3.git", {submodules = false})
- add_versions("v1.10.1", "6d8714b9a077e02c17b85a0a5d8e90ceb26e9c91b149d3238130a91ca3df3e3a")
- add_versions("v1.8.0", "d2cac7cd17966c915f87fa6b823963db4b555397e43c69d16d289765af7ab442")
- add_versions("v1.7.0", "2e6c5599995939a96b759e9f8987c69c0872ed1c219f57730685a93c1c36c9ef")
- add_versions("v1.6.0", "7062b50ed7118566fc39cf9629e44de7582e77b43611f7e10d3ab192c91acb72")
- add_versions("v1.5.0", "8b4f47164fab6f9c6c1e77a61942d57e26e135731c9876ba6acf973f54cf78fe")
- add_versions("v1.4.0", "522c8952ccae1815f34425f0c8bc6d8a4660e72dada1b4e97b8223e4c459a84a")
- add_versions("v1.3.0", "a83c6a4f589ae777a5f967652969d99b3399a85971340b8de9bed79119a11f88")
- add_patches(">=1.4.0", "patches/1.4.0/vendor.patch", "a6d611938c797d721a0345c5c772a1405ae0d6587ae46e16c1b73c89090a5c08")
- add_patches("1.3.0", "patches/1.3.0/vendor.patch", "51ab785328270b8df854283a8c20403c09813b0586eb84702a9c20241ff14980")
- add_deps("cmake")
- on_load(function (package)
- if package:gitref() or package:version():ge("1.7.0") then
- package:add("deps", "sfparse")
- else
- package:add("deps", "sfparse 2024.05.12")
- end
- if not package:config("shared") then
- package:add("defines", "NGHTTP3_STATICLIB")
- end
- end)
- on_install(function (package)
- io.replace("CMakeLists.txt", [[set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")]], "", {plain = true})
- local configs = {"-DENABLE_LIB_ONLY=ON", "-DBUILD_TESTING=OFF"}
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_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"))
- if package:is_plat("windows") then
- table.insert(configs, "-DENABLE_STATIC_CRT=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
- end
- import("package.tools.cmake").install(package, configs, {packagedeps = "sfparse"})
- end)
- on_test(function (package)
- assert(package:has_cfuncs("nghttp3_version", {includes = "nghttp3/nghttp3.h"}))
- end)
|