diff options
Diffstat (limited to 'luafilesystem-scm-1.rockspec')
-rw-r--r-- | luafilesystem-scm-1.rockspec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/luafilesystem-scm-1.rockspec b/luafilesystem-scm-1.rockspec new file mode 100644 index 0000000..71cf19b --- /dev/null +++ b/luafilesystem-scm-1.rockspec | |||
@@ -0,0 +1,28 @@ | |||
1 | package = "luafilesystem" | ||
2 | version = "scm-1" | ||
3 | source = { | ||
4 | url = "git://github.com/keplerproject/luafilesystem" | ||
5 | } | ||
6 | description = { | ||
7 | summary = "File System Library for the Lua Programming Language", | ||
8 | detailed = [[ | ||
9 | LuaFileSystem is a Lua library developed to complement the set of | ||
10 | functions related to file systems offered by the standard Lua | ||
11 | distribution. LuaFileSystem offers a portable way to access the | ||
12 | underlying directory structure and file attributes. | ||
13 | ]], | ||
14 | license = "MIT/X11" | ||
15 | } | ||
16 | dependencies = { | ||
17 | "lua >= 5.1" | ||
18 | } | ||
19 | build = { | ||
20 | type = "builtin", | ||
21 | modules = { | ||
22 | lfs = "src/lfs.c" | ||
23 | }, | ||
24 | copy_directories = { | ||
25 | "doc", | ||
26 | "tests" | ||
27 | } | ||
28 | } | ||