diff options
author | carregal <carregal> | 2008-02-18 18:55:14 +0000 |
---|---|---|
committer | carregal <carregal> | 2008-02-18 18:55:14 +0000 |
commit | c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0 (patch) | |
tree | 3aebf47cbfc8ca906222f1d7893a9f4cff544610 | |
parent | 0233beea3008f567557ef7adfe46722f2d6546e0 (diff) | |
download | luafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.tar.gz luafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.tar.bz2 luafilesystem-c2e720b5dc42d8e9cd3ba64276ad6cf47aea26b0.zip |
Finishing the new rockspecs
-rw-r--r-- | rockspecs/luafilesystem-cvs-2.rockspec | 44 |
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 @@ | |||
1 | package = "LuaFileSystem" | ||
2 | version = "cvs-2" | ||
3 | source = { | ||
4 | url = "cvs://:pserver:anonymous:@cvs.luaforge.net:/cvsroot/luafilesystem", | ||
5 | cvs_tag = "HEAD" | ||
6 | } | ||
7 | description = { | ||
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 | } | ||
16 | dependencies = { | ||
17 | "lua >= 5.1" | ||
18 | } | ||
19 | build = { | ||
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 | } | ||