diff options
| -rw-r--r-- | rockspecs/luafilesystem-1.4.0-1.rockspec | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.4.0-1.rockspec b/rockspecs/luafilesystem-1.4.0-1.rockspec new file mode 100644 index 0000000..bcf5f51 --- /dev/null +++ b/rockspecs/luafilesystem-1.4.0-1.rockspec | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | package = "LuaFileSystem" | ||
| 2 | version = "1.4.0-1" | ||
| 3 | source = { | ||
| 4 | url = "http://luaforge.net/frs/download.php/2679/luafilesystem-1.3.0.tar.gz" | ||
| 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 | } | ||
| 15 | dependencies = { | ||
| 16 | "lua >= 5.1" | ||
| 17 | } | ||
| 18 | build = { | ||
| 19 | type = "make", | ||
| 20 | build_variables = { | ||
| 21 | LUA_INC = "$(LUA_INCDIR)", | ||
| 22 | LIB_OPTION = "$(LIBFLAG)" | ||
| 23 | }, | ||
| 24 | install_variables = { | ||
| 25 | LUA_LIBDIR = "$(LIBDIR)" | ||
| 26 | } | ||
| 27 | } | ||
