1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- package("enet")
- set_homepage("http://enet.bespin.org")
- set_description("Reliable UDP networking library.")
- set_license("MIT")
- add_urls("https://github.com/lsalzman/enet/archive/refs/tags/$(version).tar.gz",
- "https://github.com/lsalzman/enet.git")
- add_versions("v1.3.18", "28603c895f9ed24a846478180ee72c7376b39b4bb1287b73877e5eae7d96b0dd")
- add_versions("v1.3.17", "1e0b4bc0b7127a2d779dd7928f0b31830f5b3dcb7ec9588c5de70033e8d2434a")
- add_patches("v1.3.18", "patches/v1.3.18/cmake.patch", "8feb51d3220d04c53d93aea053db522a0429bb3a0236039a2b62d8f01a3f638b")
- add_patches("v1.3.17", "patches/v1.3.17/cmake.patch", "e77d2d129952443d67c1ec432de81843d72b854d25bbd6fb244b0f85804d21d1")
- if is_plat("mingw") and is_subhost("msys") then
- add_extsources("pacman::enet")
- elseif is_plat("linux") then
- add_extsources("pacman::enet", "apt::libenet-dev")
- elseif is_plat("macosx") then
- add_extsources("brew::enet")
- end
- add_deps("cmake")
- if is_plat("windows", "mingw") then
- add_syslinks("winmm", "ws2_32")
- end
- on_load("windows", "mingw", function (package)
- if package:config("shared") then
- package:add("defines", "ENET_DLL")
- end
- end)
- on_install(function (package)
- local configs = {}
- 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"))
- import("package.tools.cmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:has_cfuncs("enet_initialize", {includes = "enet/enet.h"}))
- end)
|