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.
51 lines
1.9 KiB
51 lines
1.9 KiB
3 months ago
|
package("libedit")
|
||
3 months ago
|
set_homepage("http://thrysoee.dk/editline")
|
||
|
set_description("Autotool- and libtoolized port of the NetBSD Editline library (libedit).")
|
||
|
set_license("BSD-3-Clause")
|
||
|
|
||
|
add_urls("https://thrysoee.dk/editline/libedit-20240808-$(version).tar.gz")
|
||
|
|
||
|
add_versions("3.1", "5f0573349d77c4a48967191cdd6634dd7aa5f6398c6a57fe037cc02696d6099f")
|
||
|
|
||
3 months ago
|
add_configs("terminal_db", {description = "Select terminal library", default = "ncurses", type = "string", values = {"termcap", "ncurses", "tinfo"}})
|
||
|
|
||
|
if is_plat("linux") then
|
||
|
add_extsources("apt::libedit-dev")
|
||
|
end
|
||
3 months ago
|
|
||
|
add_includedirs("include", "include/editline")
|
||
|
|
||
|
on_load(function (package)
|
||
|
local terminal = package:config("terminal_db")
|
||
|
if terminal == "termcap" then
|
||
|
package:add("deps", "termcap")
|
||
|
elseif terminal == "ncurses" then
|
||
|
package:add("deps", "ncurses")
|
||
|
if package:is_plat("mingw") then
|
||
|
raise("Unsupported ncurses on mingw, need package libsystre first")
|
||
|
end
|
||
|
else
|
||
|
raise("Unsupported tinfo now!")
|
||
|
end
|
||
|
end)
|
||
|
|
||
|
on_install("linux", "macosx", "bsd", "msys", function (package)
|
||
|
local configs = {"--disable-examples"}
|
||
|
table.insert(configs, "--enable-shared=" .. (package:config("shared") and "yes" or "no"))
|
||
|
table.insert(configs, "--enable-static=" .. (package:config("shared") and "no" or "yes"))
|
||
3 months ago
|
|
||
|
local terminal_db = package:config("terminal_db")
|
||
|
if terminal_db == "ncurses" then
|
||
|
local widec = package:dep("ncurses"):config("widec")
|
||
|
if widec then
|
||
|
-- hack
|
||
|
io.replace("configure", "-lncurses", "-lncursesw", {plain = true})
|
||
|
end
|
||
|
end
|
||
|
import("package.tools.autoconf").install(package, configs, {packagedeps = terminal_db})
|
||
3 months ago
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("el_init", {includes = "histedit.h"}))
|
||
|
end)
|