diff options
author | Dennis Schridde <devurandom@gmx.net> | 2012-10-03 02:58:57 +0200 |
---|---|---|
committer | Dennis Schridde <devurandom@gmx.net> | 2012-10-03 02:58:57 +0200 |
commit | 5e55437028cc03d79c5a3cddce0cf8aecd0de2be (patch) | |
tree | b62860fecb7bbf432b471bf9142973a84134379a /rockspecs | |
parent | 8e7217e74fbe5da0a9c1fee03d191b5a0266cedd (diff) | |
download | luafilesystem-5e55437028cc03d79c5a3cddce0cf8aecd0de2be.tar.gz luafilesystem-5e55437028cc03d79c5a3cddce0cf8aecd0de2be.tar.bz2 luafilesystem-5e55437028cc03d79c5a3cddce0cf8aecd0de2be.zip |
Bump version to 1.6.2 and set version via define in src/lfs.c to make it better visible
Diffstat (limited to 'rockspecs')
-rw-r--r-- | rockspecs/luafilesystem-1.6.2-1.rockspec | 27 |
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 @@ | |||
1 | package = "LuaFileSystem" | ||
2 | |||
3 | version = "1.6.2-1" | ||
4 | |||
5 | source = { | ||
6 | url = "https://github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.6.2.tar.gz", | ||
7 | } | ||
8 | |||
9 | description = { | ||
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 | |||
19 | dependencies = { | ||
20 | "lua >= 5.1" | ||
21 | } | ||
22 | |||
23 | build = { | ||
24 | type = "builtin", | ||
25 | modules = { lfs = "src/lfs.c" }, | ||
26 | copy_directories = { "doc", "tests" } | ||
27 | } | ||