aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorFabio Mascarenhas <mascarenhas@acm.org>2012-10-01 11:11:48 -0300
committerFabio Mascarenhas <mascarenhas@acm.org>2012-10-01 11:11:48 -0300
commitd71c63cdb776f7d25313f8fcd14f07512ba1f83e (patch)
tree41111619a268eb4d05667807baf54b6c867801d9 /rockspecs
parent4a299c53b68cc9a9bf728f46c915e5b43280d896 (diff)
downloadluafilesystem-d71c63cdb776f7d25313f8fcd14f07512ba1f83e.tar.gz
luafilesystem-d71c63cdb776f7d25313f8fcd14f07512ba1f83e.tar.bz2
luafilesystem-d71c63cdb776f7d25313f8fcd14f07512ba1f83e.zip
luafilesystem 1.6.0
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-1.6.0-1.rockspec27
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.6.0-1.rockspec b/rockspecs/luafilesystem-1.6.0-1.rockspec
new file mode 100644
index 0000000..82d349c
--- /dev/null
+++ b/rockspecs/luafilesystem-1.6.0-1.rockspec
@@ -0,0 +1,27 @@
1package = "LuaFileSystem"
2
3version = "1.6.0-1"
4
5source = {
6 url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.0.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}