diff options
author | Fabio Mascarenhas <mascarenhas@lambda.local> | 2009-10-20 18:54:02 -0200 |
---|---|---|
committer | Fabio Mascarenhas <mascarenhas@lambda.local> | 2009-10-20 18:54:02 -0200 |
commit | 5ffde8ae511e62d7e821c07da53e201ed8efc5f4 (patch) | |
tree | d3b45720b2efb3bc69572bb9cff9d2c35e93f04e /rockspecs | |
parent | 2b5f187a40fa043ad5ed5dac5d3a85385043feb9 (diff) | |
download | luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.gz luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.tar.bz2 luafilesystem-5ffde8ae511e62d7e821c07da53e201ed8efc5f4.zip |
packaging for version 1.5.0
Diffstat (limited to 'rockspecs')
-rw-r--r-- | rockspecs/luafilesystem-1.5.0-1.rockspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.5.0-1.rockspec b/rockspecs/luafilesystem-1.5.0-1.rockspec new file mode 100644 index 0000000..1170ad2 --- /dev/null +++ b/rockspecs/luafilesystem-1.5.0-1.rockspec | |||
@@ -0,0 +1,27 @@ | |||
1 | package = "LuaFileSystem" | ||
2 | |||
3 | version = "1.5.0-1" | ||
4 | |||
5 | source = { | ||
6 | url = "http://cloud.github.com/downloads/keplerproject/luafilesystem/luafilesystem-1.5.0.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 = "module", | ||
25 | modules = { lfs = "src/lfs.c" }, | ||
26 | copy_directories = { "doc", "tests" } | ||
27 | } | ||