package = "Readline" version = "1.8-0" source = { url = "http://www.pjb.com.au/comp/lua/readline-1.8.tar.gz", md5 = "4b64f885771a22a1b32a6e8d09cc7d5e" } description = { summary = "Interface to the readline library", detailed = [[ This Lua module offers a simple calling interface to the GNU Readline/History Library. ]], homepage = "http://www.pjb.com.au/comp/lua/readline.html", license = "MIT/X11", } -- http://www.luarocks.org/en/Rockspec_format dependencies = { "lua >=5.1, <5.4", "luaposix >= 30", } external_dependencies = { -- Duarn 20150216, 20150416 READLINE = { header = "readline/readline.h"; library = "readline"; }; HISTORY = { header = "readline/history.h"; } } build = { type = "builtin", modules = { ["readline"] = "readline.lua", ["C-readline"] = { sources = { "C-readline.c" }, libraries = { "readline" }, }, }, copy_directories = { "doc", "test" }, }