aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorAlexey Melnichuk <mimir@newmail.ru>2014-11-12 14:44:53 +0400
committerAlexey Melnichuk <mimir@newmail.ru>2014-11-12 14:51:55 +0400
commit8f2949974a6329296cb643bd9507983e8b589d9a (patch)
treee4c857b9713d9b604785385fabeb031d66949a65 /rockspecs
parent9db234cc10a6db0247a9347dae8016cf7b527f38 (diff)
downloadluafilesystem-8f2949974a6329296cb643bd9507983e8b589d9a.tar.gz
luafilesystem-8f2949974a6329296cb643bd9507983e8b589d9a.tar.bz2
luafilesystem-8f2949974a6329296cb643bd9507983e8b589d9a.zip
Fix. Support Lua 5.3.beta
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-cvs-3.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-cvs-3.rockspec b/rockspecs/luafilesystem-cvs-3.rockspec
new file mode 100644
index 0000000..a4388cd
--- /dev/null
+++ b/rockspecs/luafilesystem-cvs-3.rockspec
@@ -0,0 +1,27 @@
1package = "LuaFileSystem"
2
3version = "cvs-3"
4
5source = {
6 url = "git://github.com/keplerproject/luafilesystem.git",
7}
8
9description = {
10 summary = "File System Library for the Lua Programming Language",
11 detailed = [[
12 LuaFileSystem is a Lua library developed to complement the set of
13 functions related to file systems offered by the standard Lua
14 distribution. LuaFileSystem offers a portable way to access the
15 underlying directory structure and file attributes.
16 ]]
17}
18
19dependencies = {
20 "lua >= 5.1, < 5.4"
21}
22
23build = {
24 type = "builtin",
25 modules = { lfs = "src/lfs.c" },
26 copy_directories = { "doc", "tests" }
27}