aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorcarregal <carregal>2008-05-07 19:06:37 +0000
committercarregal <carregal>2008-05-07 19:06:37 +0000
commitd4bfd537a8c4c14c3c1790ece17faa3eb639e7c2 (patch)
tree954e4adb5478d2d96fb8c482a883ff0c920e50d1 /rockspecs
parentd7a5679fb8dac1da8563b8e5b1d759e08dab3b32 (diff)
downloadluafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.tar.gz
luafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.tar.bz2
luafilesystem-d4bfd537a8c4c14c3c1790ece17faa3eb639e7c2.zip
Packaging version 1.4.1
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-1.4.1-1.rockspec43
1 files changed, 43 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.4.1-1.rockspec b/rockspecs/luafilesystem-1.4.1-1.rockspec
new file mode 100644
index 0000000..209b3b3
--- /dev/null
+++ b/rockspecs/luafilesystem-1.4.1-1.rockspec
@@ -0,0 +1,43 @@
1package = "LuaFileSystem"
2version = "1.4.1-1"
3source = {
4 url = "",
5}
6description = {
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}
15dependencies = {
16 "lua >= 5.1"
17}
18build = {
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}