|
| 1 | +package = "MobDebug" |
| 2 | +version = "0.52-1" |
| 3 | + |
| 4 | +source = { |
| 5 | + url = "git://github.com/pkulchenko/MobDebug.git", |
| 6 | + tag = "0.52" |
| 7 | +} |
| 8 | + |
| 9 | +description = { |
| 10 | + summary = "MobDebug is a remote debugger for the Lua programming language", |
| 11 | + detailed = [[ |
| 12 | + MobDebug allows you control the execution of another Lua program remotely, |
| 13 | + set breakpoints, and inspect the current state of the program. |
| 14 | +
|
| 15 | + MobDebug is based on [RemDebug](http://www.keplerproject.org/remdebug/) and |
| 16 | + extends it in several ways: |
| 17 | +
|
| 18 | + * fixed several existing bugs; |
| 19 | + * removed dependency on LuaFileSystem; |
| 20 | + * added new commands: LOAD, RELOAD, OUT, STACK; |
| 21 | + * added support for debugging wxwidgets applications; |
| 22 | + * added ability to pause and abort running applications; |
| 23 | + * added pretty printing and handling of multiple results in EXEC; |
| 24 | + * added stack and local/upvalue value reporting (STACK); |
| 25 | + * added on/off commands to turn debugging on and off (to improve performance); |
| 26 | + * added support for coroutine debugging (see examples/README for details); |
| 27 | + * added support for [Moai](http://getmoai.com/) debugging; |
| 28 | + * added support for [MoSync](http://mosync.com/) using [MobileLua](https://github.com/divineprog/mobilelua); |
| 29 | + * added support for Lua 5.2; |
| 30 | + * added support for LuaJIT debugging (see note in Dependencies); |
| 31 | + * added support for cross-platform debugging (with client and server running on different platforms/filesystems); |
| 32 | + * tested integration with [ZeroBrane Studio IDE](http://studio.zerobrane.com/). |
| 33 | + ]], |
| 34 | + license = "MIT/X11", |
| 35 | + homepage = "https://github.com/pkulchenko/MobDebug" |
| 36 | +} |
| 37 | + |
| 38 | +dependencies = { |
| 39 | + "lua >= 5.1", |
| 40 | + "luasocket >= 2.0" |
| 41 | +} |
| 42 | + |
| 43 | +build = { |
| 44 | + type = "none", |
| 45 | + install = { |
| 46 | + lua = { ["mobdebug"] = "src/mobdebug.lua" } |
| 47 | + }, |
| 48 | + copy_directories = { "examples" } |
| 49 | +} |
0 commit comments