diff options
Diffstat (limited to 'lua-term-0.2-1.rockspec')
-rw-r--r-- | lua-term-0.2-1.rockspec | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/lua-term-0.2-1.rockspec b/lua-term-0.2-1.rockspec new file mode 100644 index 0000000..5adea76 --- /dev/null +++ b/lua-term-0.2-1.rockspec | |||
@@ -0,0 +1,21 @@ | |||
1 | package = 'lua-term' | ||
2 | version = '0.1-1' | ||
3 | |||
4 | source = { | ||
5 | url = 'https://github.com/downloads/hoelzro/lua-term/lua-term-0.1.tar.gz', | ||
6 | } | ||
7 | |||
8 | description = { | ||
9 | summary = 'Terminal functions for Lua', | ||
10 | homepage = 'https://github.com/hoelzro/lua-term', | ||
11 | license = "MIT/X11", | ||
12 | } | ||
13 | |||
14 | build = { | ||
15 | modules = { | ||
16 | ['term'] = 'term/init.lua', | ||
17 | ['term.colors'] = 'term/colors.lua', | ||
18 | ['term.core'] = 'core.c', | ||
19 | }, | ||
20 | type = 'builtin', | ||
21 | } | ||