1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package("pdcurses")
- set_homepage("https://pdcurses.org/")
- set_description("PDCurses - a curses library for environments that don't fit the termcap/terminfo model.")
- add_urls("https://github.com/wmcbrine/PDCurses/archive/refs/tags/$(version).tar.gz",
- "https://github.com/wmcbrine/PDCurses.git")
- add_versions("3.9", "590dbe0f5835f66992df096d3602d0271103f90cf8557a5d124f693c2b40d7ec")
- if not is_plat("windows") then
- add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
- end
- add_configs("port", {description = "Set the target port.", default = "sdl2", values = {"sdl2", "wincon"}})
- on_load(function (package)
- if package:config("port") == "sdl2" then
- package:add("deps", "libsdl2")
- else
- package:add("syslinks", "user32", "advapi32")
- end
- end)
- on_install("linux", "macosx", "mingw", "windows", function (package)
- io.writefile("xmake.lua", [[
- add_rules("mode.debug", "mode.release")
- option("port", {description = "Set the target port."})
- if is_config("port", "sdl2") then
- add_requires("libsdl2")
- end
- target("pdcurses")
- set_kind("$(kind)")
- add_files("pdcurses/*.c", "$(port)/*.c")
- add_includedirs(".", "$(port)")
- add_headerfiles("*.h", "$(port)/*.h")
- if is_config("port", "wincon") then
- add_defines("PDC_WIDE", "PDC_FORCE_UTF8")
- end
- add_packages("libsdl2")
- ]])
- local configs = {}
- if package:config("shared") then
- configs.kind = "shared"
- end
- configs.port = package:config("port")
- import("package.tools.xmake").install(package, configs)
- end)
- on_test(function (package)
- assert(package:has_cincludes("curses.h"))
- end)
|