aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorcarregal <carregal>2008-02-13 21:40:56 +0000
committercarregal <carregal>2008-02-13 21:40:56 +0000
commitdff01ac3c966c42f72f49172374edda420bcf954 (patch)
tree9bd829cbf3adb8c2b94ddf006fd1a2aea11e2fe1 /rockspecs
parentcdfd06b4eab58fa04258f18cfd713b7ecbba2501 (diff)
downloadluafilesystem-dff01ac3c966c42f72f49172374edda420bcf954.tar.gz
luafilesystem-dff01ac3c966c42f72f49172374edda420bcf954.tar.bz2
luafilesystem-dff01ac3c966c42f72f49172374edda420bcf954.zip
Version 1.4.0 rockspec
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-1.4.0-1.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.4.0-1.rockspec b/rockspecs/luafilesystem-1.4.0-1.rockspec
new file mode 100644
index 0000000..bcf5f51
--- /dev/null
+++ b/rockspecs/luafilesystem-1.4.0-1.rockspec
@@ -0,0 +1,27 @@
1package = "LuaFileSystem"
2version = "1.4.0-1"
3source = {
4 url = "http://luaforge.net/frs/download.php/2679/luafilesystem-1.3.0.tar.gz"
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 type = "make",
20 build_variables = {
21 LUA_INC = "$(LUA_INCDIR)",
22 LIB_OPTION = "$(LIBFLAG)"
23 },
24 install_variables = {
25 LUA_LIBDIR = "$(LIBDIR)"
26 }
27}