diff options
| author | jacqueline <me@jacqueline.id.au> | 2023-12-13 16:10:08 +1100 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2023-12-13 16:10:08 +1100 |
| commit | 64b106c13e18c33be0f2b0de532054e0ed3f731d (patch) | |
| tree | b54b1c90d941bc456b4d51e864970720bdf2d648 /lib/lua-repl/luarepl-0.10-1.rockspec | |
| parent | 5a2f0b08e0e3f20cda977b510b680d5843ae7283 (diff) | |
| download | tangara-fw-64b106c13e18c33be0f2b0de532054e0ed3f731d.tar.gz | |
add a cool lua repl
Diffstat (limited to 'lib/lua-repl/luarepl-0.10-1.rockspec')
| -rw-r--r-- | lib/lua-repl/luarepl-0.10-1.rockspec | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/lua-repl/luarepl-0.10-1.rockspec b/lib/lua-repl/luarepl-0.10-1.rockspec new file mode 100644 index 00000000..4b3401a5 --- /dev/null +++ b/lib/lua-repl/luarepl-0.10-1.rockspec @@ -0,0 +1,38 @@ +package = 'luarepl' +version = '0.10-1' +source = { + url = 'https://github.com/hoelzro/lua-repl/archive/0.10.tar.gz', + dir = 'lua-repl-0.10', +} +description = { + summary = 'A reusable REPL component for Lua, written in Lua', + homepage = 'https://github.com/hoelzro/lua-repl', + license = 'MIT/X11', +} +dependencies = { + 'lua >= 5.1' +} +build = { + type = 'builtin', + modules = { + ['repl'] = 'repl/init.lua', + ['repl.utils'] = 'repl/utils.lua', + ['repl.sync'] = 'repl/sync.lua', + ['repl.compat'] = 'repl/compat.lua', + ['repl.console'] = 'repl/console.lua', + ['repl.plugins.autoreturn'] = 'repl/plugins/autoreturn.lua', + ['repl.plugins.completion'] = 'repl/plugins/completion.lua', + ['repl.plugins.example'] = 'repl/plugins/example.lua', + ['repl.plugins.history'] = 'repl/plugins/history.lua', + ['repl.plugins.keep_last_eval'] = 'repl/plugins/keep_last_eval.lua', + ['repl.plugins.linenoise'] = 'repl/plugins/linenoise.lua', + ['repl.plugins.pretty_print'] = 'repl/plugins/pretty_print.lua', + ['repl.plugins.rcfile'] = 'repl/plugins/rcfile.lua', + ['repl.plugins.semicolon_suppress_output'] = 'repl/plugins/semicolon_suppress_output.lua', + ['repl.plugins.filename_completion'] = 'repl/plugins/filename_completion.lua', + ['repl.plugins.rlwrap'] = 'repl/plugins/rlwrap.lua', + }, + install = { + bin = { 'rep.lua' }, + } +} |
