aboutsummaryrefslogtreecommitdiff
path: root/rockspecs
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2015-01-15 16:58:20 -0200
committerHisham Muhammad <hisham@gobolinux.org>2015-01-15 16:58:20 -0200
commit8014725009e195ffb502bcd65ca4e93b60a1b21c (patch)
tree3365846317aa4de62d542be9c116b4aaeb912e43 /rockspecs
parent0a82aae451c5c95ceacb5fcb235f4d1ea964f5f5 (diff)
downloadluafilesystem-v_1_6_3.tar.gz
luafilesystem-v_1_6_3.tar.bz2
luafilesystem-v_1_6_3.zip
Prepare for release 1.6.3v_1_6_3v1_6_3
Diffstat (limited to 'rockspecs')
-rw-r--r--rockspecs/luafilesystem-1.6.3-1.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.6.3-1.rockspec b/rockspecs/luafilesystem-1.6.3-1.rockspec
new file mode 100644
index 0000000..89b25d4
--- /dev/null
+++ b/rockspecs/luafilesystem-1.6.3-1.rockspec
@@ -0,0 +1,28 @@
1package = "LuaFileSystem"
2version = "1.6.3-1"
3source = {
4 url = "git://github.com/keplerproject/luafilesystem",
5 tag = "v_1_6_3",
6}
7description = {
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 license = "MIT/X11",
16}
17dependencies = {
18 "lua >= 5.1"
19}
20build = {
21 type = "builtin",
22 modules = {
23 lfs = "src/lfs.c"
24 },
25 copy_directories = {
26 "doc", "tests"
27 }
28}