From c7f3e1d1ece156d6cfa7629aa374368ad76ace94 Mon Sep 17 00:00:00 2001 From: Rob Hoelz Date: Mon, 4 Apr 2016 19:53:19 -0500 Subject: Update rockspec file for 0.06 --- lua-term-0.5-1.rockspec | 23 ----------------------- lua-term-0.6-1.rockspec | 23 +++++++++++++++++++++++ 2 files changed, 23 insertions(+), 23 deletions(-) delete mode 100644 lua-term-0.5-1.rockspec create mode 100644 lua-term-0.6-1.rockspec diff --git a/lua-term-0.5-1.rockspec b/lua-term-0.5-1.rockspec deleted file mode 100644 index c464677..0000000 --- a/lua-term-0.5-1.rockspec +++ /dev/null @@ -1,23 +0,0 @@ -package = 'lua-term' -version = '0.5-1' - -source = { - url = 'https://github.com/hoelzro/lua-term/archive/0.05.tar.gz', - dir = 'lua-term-0.05', -} - -description = { - summary = 'Terminal functions for Lua', - homepage = 'https://github.com/hoelzro/lua-term', - license = "MIT/X11", -} - -build = { - modules = { - ['term'] = 'term/init.lua', - ['term.colors'] = 'term/colors.lua', - ['term.cursor'] = 'term/cursor.lua', - ['term.core'] = 'core.c', - }, - type = 'builtin', -} diff --git a/lua-term-0.6-1.rockspec b/lua-term-0.6-1.rockspec new file mode 100644 index 0000000..f23c6ac --- /dev/null +++ b/lua-term-0.6-1.rockspec @@ -0,0 +1,23 @@ +package = 'lua-term' +version = '0.6-1' + +source = { + url = 'https://github.com/hoelzro/lua-term/archive/0.06.tar.gz', + dir = 'lua-term-0.06', +} + +description = { + summary = 'Terminal functions for Lua', + homepage = 'https://github.com/hoelzro/lua-term', + license = "MIT/X11", +} + +build = { + modules = { + ['term'] = 'term/init.lua', + ['term.colors'] = 'term/colors.lua', + ['term.cursor'] = 'term/cursor.lua', + ['term.core'] = 'core.c', + }, + type = 'builtin', +} -- cgit v1.2.3-55-g6feb