diff options
author | Rob Hoelz <rob@hoelz.ro> | 2016-04-05 22:11:44 -0500 |
---|---|---|
committer | Rob Hoelz <rob@hoelz.ro> | 2016-04-05 22:11:44 -0500 |
commit | 9b3dfe60018ab910ba09c400789cfab50b79a3d7 (patch) | |
tree | feeb3ee38521f5339ad7067526ce0032db99d3d2 /lua-term-0.7-1.rockspec | |
parent | 33a78ac32dae1d135267f30b561770d83a72f3fe (diff) | |
download | lua-term-0.7.tar.gz lua-term-0.7.tar.bz2 lua-term-0.7.zip |
Diffstat (limited to 'lua-term-0.7-1.rockspec')
-rw-r--r-- | lua-term-0.7-1.rockspec | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lua-term-0.7-1.rockspec b/lua-term-0.7-1.rockspec new file mode 100644 index 0000000..ba1a2bf --- /dev/null +++ b/lua-term-0.7-1.rockspec | |||
@@ -0,0 +1,23 @@ | |||
1 | package = 'lua-term' | ||
2 | version = '0.7-1' | ||
3 | |||
4 | source = { | ||
5 | url = 'https://github.com/hoelzro/lua-term/archive/0.07.tar.gz', | ||
6 | dir = 'lua-term-0.07', | ||
7 | } | ||
8 | |||
9 | description = { | ||
10 | summary = 'Terminal functions for Lua', | ||
11 | homepage = 'https://github.com/hoelzro/lua-term', | ||
12 | license = "MIT/X11", | ||
13 | } | ||
14 | |||
15 | build = { | ||
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 | } | ||