aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcarregal <carregal>2008-02-18 18:55:14 +0000
committercarregal <carregal>2008-02-18 18:55:14 +0000
commitc2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0 (patch)
tree3aebf47cbfc8ca906222f1d7893a9f4cff544610
parent0233beea3008f567557ef7adfe46722f2d6546e0 (diff)
downloadluafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.tar.gz
luafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.tar.bz2
luafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.zip
Finishing the new rockspecs
-rw-r--r--rockspecs/luafilesystem-cvs-2.rockspec44
1 files changed, 44 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-cvs-2.rockspec b/rockspecs/luafilesystem-cvs-2.rockspec
new file mode 100644
index 0000000..45e7b38
--- /dev/null
+++ b/rockspecs/luafilesystem-cvs-2.rockspec
@@ -0,0 +1,44 @@
1package = "LuaFileSystem"
2version = "cvs-2"
3source = {
4 url = "cvs://:pserver:anonymous:@cvs.luaforge.net:/cvsroot/luafilesystem",
5 cvs_tag = "HEAD"
6}
7description = {
8 summary = "File System Library for the Lua Programming Language",
9 detailed = [[
10 LuaFileSystem is a Lua library developed to complement the set of
11 functions related to file systems offered by the standard Lua
12 distribution. LuaFileSystem offers a portable way to access the
13 underlying directory structure and file attributes.
14 ]]
15}
16dependencies = {
17 "lua >= 5.1"
18}
19build = {
20 platforms = {
21 unix = {
22 type = "make",
23 build_variables = {
24 LIB_OPTION = "$(LIBFLAG)",
25 CFLAGS = "$(CFLAGS) -I$(LUA_INCDIR)",
26 },
27 install_variables = {
28 LUA_LIBDIR = "$(LIBDIR)"
29 }
30 },
31 win32 = {
32 type = "make",
33 build_variables = {
34 LUA_LIB = "$(LUA_LIBDIR)\\lua5.1.lib",
35 CFLAGS = "/MD $(CFLAGS) /I$(LUA_INCDIR)",
36 },
37 install_variables = {
38 LUA_LIBDIR = "$(LIBDIR)",
39 LUA_DIR = "$(LUADIR)",
40 BIN_DIR = "$(BINDIR)"
41 }
42 }
43 }
44}