aboutsummaryrefslogtreecommitdiff
path: root/lua-term-0.1-1.rockspec
blob: 3ae9092886d9679094cdc36bf46fe6b1c21b36c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package = 'lua-term'
version = '0.1-1'

source = {
  url = 'https://github.com/hoelzro/lua-term.git',
}

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.core']   = 'core.c',
  },
  type = 'builtin',
}