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/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/lua')
-rw-r--r-- | lfw/lua/luarocks/config.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lfw/lua/luarocks/config.lua b/lfw/lua/luarocks/config.lua new file mode 100644 index 00000000..fd0e2fb9 --- /dev/null +++ b/lfw/lua/luarocks/config.lua | |||
@@ -0,0 +1,16 @@ | |||
1 | local os = os | ||
2 | |||
3 | module("luarocks.config") | ||
4 | LFW_ROOT = os.getenv("LUA_DEV") | ||
5 | LUA_INCDIR=LFW_ROOT..[[\include]] | ||
6 | LUA_LIBDIR=LFW_ROOT..[[\lib]] | ||
7 | LUA_BINDIR=LFW_ROOT | ||
8 | LUA_INTERPRETER=[[lua]] | ||
9 | LUAROCKS_UNAME_S=[[WindowsNT]] | ||
10 | LUAROCKS_UNAME_M=[[x86]] | ||
11 | LUAROCKS_SYSCONFIG=LFW_ROOT..[[\luarocks_config.lua]] | ||
12 | LUAROCKS_ROCKS_TREE=LFW_ROOT | ||
13 | LUAROCKS_PREFIX=LFW_ROOT | ||
14 | LUAROCKS_DOWNLOADER=[[wget]] | ||
15 | LUAROCKS_MD5CHECKER=[[md5sum]] | ||
16 | |||