summaryrefslogtreecommitdiff
path: root/lua-term-0.6-1.rockspec
diff options
context:
space:
mode:
authorRob Hoelz <rob@hoelz.ro>2016-04-04 19:53:19 -0500
committerRob Hoelz <rob@hoelz.ro>2016-04-04 19:53:29 -0500
commitc7f3e1d1ece156d6cfa7629aa374368ad76ace94 (patch)
tree3f07d2e1e013833d38436367662387ac58b49caa /lua-term-0.6-1.rockspec
parentae367d8bb013bc396a1e99a4065f280ad5740724 (diff)
downloadlua-term-0.06.tar.gz
lua-term-0.06.tar.bz2
lua-term-0.06.zip
Update rockspec file for 0.060.60.06
Diffstat (limited to 'lua-term-0.6-1.rockspec')
-rw-r--r--lua-term-0.6-1.rockspec23
1 files changed, 23 insertions, 0 deletions
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 @@
1package = 'lua-term'
2version = '0.6-1'
3
4source = {
5 url = 'https://github.com/hoelzro/lua-term/archive/0.06.tar.gz',
6 dir = 'lua-term-0.06',
7}
8
9description = {
10 summary = 'Terminal functions for Lua',
11 homepage = 'https://github.com/hoelzro/lua-term',
12 license = "MIT/X11",
13}
14
15build = {
16 modules = {
17 ['term'] = 'term/init.lua',
18 ['term.colors'] = 'term/colors.lua',
19 ['term.cursor'] = 'term/cursor.lua',
20 ['term.core'] = 'core.c',
21 },
22 type = 'builtin',
23}