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.
28 lines
971 B
28 lines
971 B
2 years ago
|
package("linenoise")
|
||
|
|
||
|
set_homepage("https://github.com/antirez/linenoise")
|
||
|
set_description("A small self-contained alternative to readline and libedit")
|
||
|
|
||
|
add_urls("https://github.com/antirez/linenoise.git")
|
||
|
|
||
|
add_versions("2020.3.12", "97d2850af13c339369093b78abe5265845d78220")
|
||
|
|
||
|
on_install("linux", "macosx", "bsd", "wasm", "android", "cross", "iphoneos", function (package)
|
||
|
local configs = {}
|
||
|
io.writefile("xmake.lua", [[
|
||
|
add_rules("mode.release", "mode.debug")
|
||
|
target("linenoise")
|
||
|
set_kind("static")
|
||
|
add_files("linenoise.c")
|
||
|
add_headerfiles("linenoise.h")
|
||
|
]])
|
||
|
if package:config("shared") then
|
||
|
configs.kind = "shared"
|
||
|
end
|
||
|
import("package.tools.xmake").install(package, configs)
|
||
|
end)
|
||
|
|
||
|
on_test(function (package)
|
||
|
assert(package:has_cfuncs("linenoise", {includes = {"stddef.h", "linenoise.h"}}))
|
||
|
end)
|