diff options
| author | mascarenhas <mascarenhas> | 2008-04-14 19:55:55 +0000 |
|---|---|---|
| committer | mascarenhas <mascarenhas> | 2008-04-14 19:55:55 +0000 |
| commit | c039fc9798b5db564a487e59f166d1a21dd32e9d (patch) | |
| tree | e9ff78d3648f016b8abb85e50b2e9cc5eee7830d | |
| parent | e7a2c5419fb1bdc178e0e8a47c670beb213d4065 (diff) | |
| download | luafilesystem-1_4_1RC1.tar.gz luafilesystem-1_4_1RC1.tar.bz2 luafilesystem-1_4_1RC1.zip | |
added 1.4.1rc1 rockspecV1_4_1RC1
| -rw-r--r-- | rockspecs/luafilesystem-1.4.1rc1-1.rockspec | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.4.1rc1-1.rockspec b/rockspecs/luafilesystem-1.4.1rc1-1.rockspec new file mode 100644 index 0000000..1194711 --- /dev/null +++ b/rockspecs/luafilesystem-1.4.1rc1-1.rockspec | |||
| @@ -0,0 +1,43 @@ | |||
| 1 | package = "LuaFileSystem" | ||
| 2 | version = "1.4.1rc1-1" | ||
| 3 | source = { | ||
| 4 | url = "http://luafilesystem.luaforge.net/luafilesystem-1.4.1rc1.tar.gz", | ||
| 5 | } | ||
| 6 | description = { | ||
| 7 | summary = "File System Library for the Lua Programming Language", | ||
| 8 | detailed = [[ | ||
| 9 | LuaFileSystem is a Lua library developed to complement the set of | ||
| 10 | functions related to file systems offered by the standard Lua | ||
| 11 | distribution. LuaFileSystem offers a portable way to access the | ||
| 12 | underlying directory structure and file attributes. | ||
| 13 | ]] | ||
| 14 | } | ||
| 15 | dependencies = { | ||
| 16 | "lua >= 5.1" | ||
| 17 | } | ||
| 18 | build = { | ||
| 19 | platforms = { | ||
| 20 | unix = { | ||
| 21 | type = "make", | ||
| 22 | build_variables = { | ||
| 23 | LIB_OPTION = "$(LIBFLAG)", | ||
| 24 | CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR) $(STAT64)", | ||
| 25 | }, | ||
| 26 | install_variables = { | ||
| 27 | LUA_LIBDIR = "$(LIBDIR)" | ||
| 28 | } | ||
| 29 | }, | ||
| 30 | win32 = { | ||
| 31 | type = "make", | ||
| 32 | build_variables = { | ||
| 33 | LUA_LIB = "$(LUA_LIBDIR)\\lua5.1.lib", | ||
| 34 | CFLAGS = "/MD $(CFLAGS) /I$(LUA_INCDIR)", | ||
| 35 | }, | ||
| 36 | install_variables = { | ||
| 37 | LUA_LIBDIR = "$(LIBDIR)", | ||
| 38 | LUA_DIR = "$(LUADIR)", | ||
| 39 | BIN_DIR = "$(BINDIR)" | ||
| 40 | } | ||
| 41 | } | ||
| 42 | } | ||
| 43 | } | ||
