diff options
author | Fabio Mascarenhas <mascarenhas@lambda-2.local> | 2010-03-20 15:34:47 -0300 |
---|---|---|
committer | Fabio Mascarenhas <mascarenhas@lambda-2.local> | 2010-03-20 15:34:47 -0300 |
commit | 23211617237d206f0efc677e625f3d03614550b5 (patch) | |
tree | 65193d80d2a3cc25b9fa5d6fecd6024c5234f9a5 /lfw/luarocks.lua | |
parent | 4558c76a2bb640790cb3d9e70e84569d193abe06 (diff) | |
download | luarocks-23211617237d206f0efc677e625f3d03614550b5.tar.gz luarocks-23211617237d206f0efc677e625f3d03614550b5.tar.bz2 luarocks-23211617237d206f0efc677e625f3d03614550b5.zip |
files for Lua for Windows support
Diffstat (limited to 'lfw/luarocks.lua')
-rw-r--r-- | lfw/luarocks.lua | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lfw/luarocks.lua b/lfw/luarocks.lua new file mode 100644 index 00000000..1c781254 --- /dev/null +++ b/lfw/luarocks.lua | |||
@@ -0,0 +1,20 @@ | |||
1 | #!/usr/local/bin/lua | ||
2 | |||
3 | local command_line = require("luarocks.command_line") | ||
4 | |||
5 | program_name = "luarocks" | ||
6 | program_description = "LuaRocks main command-line interface" | ||
7 | |||
8 | commands = {} | ||
9 | commands.help = require("luarocks.help") | ||
10 | commands.pack = require("luarocks.pack") | ||
11 | commands.unpack = require("luarocks.unpack") | ||
12 | commands.build = require("luarocks.build") | ||
13 | commands.install = require("luarocks.install") | ||
14 | commands.search = require("luarocks.search") | ||
15 | commands.list = require("luarocks.list") | ||
16 | commands.remove = require("luarocks.remove") | ||
17 | commands.make = require("luarocks.make") | ||
18 | commands.download = require("luarocks.download") | ||
19 | |||
20 | command_line.run_command(...) | ||