aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2017-09-15 18:21:25 -0300
committerHisham Muhammad <hisham@gobolinux.org>2017-09-15 19:51:07 -0300
commitd37fc8101a5f1ebbff2cc7bc164717782f181ee7 (patch)
treee999d1f498e6174480610125598988dc13b9fe0f
parent754576dee62e9c13195984d0a90547401ef6ebc2 (diff)
downloadluafilesystem-d37fc8101a5f1ebbff2cc7bc164717782f181ee7.tar.gz
luafilesystem-d37fc8101a5f1ebbff2cc7bc164717782f181ee7.tar.bz2
luafilesystem-d37fc8101a5f1ebbff2cc7bc164717782f181ee7.zip
Add rockspec for 1.7.0
-rw-r--r--rockspecs/luafilesystem-1.7.0-1.rockspec28
1 files changed, 28 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.7.0-1.rockspec b/rockspecs/luafilesystem-1.7.0-1.rockspec
new file mode 100644
index 0000000..c1c0ecc
--- /dev/null
+++ b/rockspecs/luafilesystem-1.7.0-1.rockspec
@@ -0,0 +1,28 @@
1package = "LuaFileSystem"
2version = "1.7.0-1"
3source = {
4 url = "git://github.com/keplerproject/luafilesystem",
5 tag = "v1_7_0",
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}