From 8014725009e195ffb502bcd65ca4e93b60a1b21c Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Thu, 15 Jan 2015 16:58:20 -0200 Subject: Prepare for release 1.6.3 --- rockspecs/luafilesystem-1.6.3-1.rockspec | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 rockspecs/luafilesystem-1.6.3-1.rockspec (limited to 'rockspecs') diff --git a/rockspecs/luafilesystem-1.6.3-1.rockspec b/rockspecs/luafilesystem-1.6.3-1.rockspec new file mode 100644 index 0000000..89b25d4 --- /dev/null +++ b/rockspecs/luafilesystem-1.6.3-1.rockspec @@ -0,0 +1,28 @@ +package = "LuaFileSystem" +version = "1.6.3-1" +source = { + url = "git://github.com/keplerproject/luafilesystem", + tag = "v_1_6_3", +} +description = { + summary = "File System Library for the Lua Programming Language", + detailed = [[ + LuaFileSystem is a Lua library developed to complement the set of + functions related to file systems offered by the standard Lua + distribution. LuaFileSystem offers a portable way to access the + underlying directory structure and file attributes. + ]], + license = "MIT/X11", +} +dependencies = { + "lua >= 5.1" +} +build = { + type = "builtin", + modules = { + lfs = "src/lfs.c" + }, + copy_directories = { + "doc", "tests" + } +} -- cgit v1.2.3-55-g6feb