Skip to content

Commit

Permalink
Add rockspec
Browse files Browse the repository at this point in the history
  • Loading branch information
hoelzro committed Oct 12, 2011
1 parent c8a02be commit da5e4d9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions luarepl-0.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package = 'luarepl'
version = '0.1-1'
source = {
url = 'http://...'
}
description = {
summary = 'A reusable REPL component for Lua, written in Lua',
homepage = 'https://github.com/hoelzro/lua-repl',
license = 'MIT/X11',
}
dependencies = {
'lua >= 5.1'
}
build = {
type = 'builtin',
modules = {
['repl'] = 'repl/init.lua',
['repl.sync'] = 'repl/sync.lua',
['repl.console'] = 'repl/console.lua',
},
install = {
bin = { 'rep.lua' },
}
}

0 comments on commit da5e4d9

Please sign in to comment.