aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorFabio Mascarenhas <mascarenhas@gmail.com>2012-10-04 07:00:22 -0700
committerFabio Mascarenhas <mascarenhas@gmail.com>2012-10-04 07:00:22 -0700
commit62d5dbe3b6375e19573ad8f8af23df318bb05042 (patch)
tree899cba2237f04413e54165b0f513ed6ba0735a6b /rockspecs
parent944e325e2930a19ed7783816def8cd94508a15f8 (diff)
parentf42c1a1a38cb6ee448bbb36fb5c8fadeebef84fc (diff)
downloadluafilesystem-62d5dbe3b6375e19573ad8f8af23df318bb05042.tar.gz
luafilesystem-62d5dbe3b6375e19573ad8f8af23df318bb05042.tar.bz2
luafilesystem-62d5dbe3b6375e19573ad8f8af23df318bb05042.zip
Merge pull request #18 from devurandom/fix/lua52
Full Lua 5.2 compatibility and adherance to modules-create-no-globals
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-1.6.2-1.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.6.2-1.rockspec b/rockspecs/luafilesystem-1.6.2-1.rockspec
new file mode 100644
index 0000000..1c11efc
--- /dev/null
+++ b/rockspecs/luafilesystem-1.6.2-1.rockspec
@@ -0,0 +1,27 @@
1package = "LuaFileSystem"
2
3version = "1.6.2-1"
4
5source = {
6 url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.2.tar.gz",
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"
21}
22
23build = {
24 type = "builtin",
25 modules = { lfs = "src/lfs.c" },
26 copy_directories = { "doc", "tests" }
27}