diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2017-09-15 20:07:33 -0300 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2017-09-15 20:07:33 -0300 |
| commit | de87218e9798c4dd1a40d65403d99e9e82e1cfa0 (patch) | |
| tree | 79837a74881c913567d0fc79a4efa07bec5e1fff /rockspecs | |
| parent | a23cadf009c5ea27b3da245a4b7c21de76b74dcc (diff) | |
| download | luafilesystem-1_7_0_2.tar.gz luafilesystem-1_7_0_2.tar.bz2 luafilesystem-1_7_0_2.zip | |
Add rockspec for hotfix.v1_7_0_2
Diffstat (limited to 'rockspecs')
| -rw-r--r-- | rockspecs/luafilesystem-1.7.0-2.rockspec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/rockspecs/luafilesystem-1.7.0-2.rockspec b/rockspecs/luafilesystem-1.7.0-2.rockspec new file mode 100644 index 0000000..4aa2425 --- /dev/null +++ b/rockspecs/luafilesystem-1.7.0-2.rockspec | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | package = "LuaFileSystem" | ||
| 2 | version = "1.7.0-2" | ||
| 3 | source = { | ||
| 4 | url = "git://github.com/keplerproject/luafilesystem", | ||
| 5 | tag = "v1_7_0_2", | ||
| 6 | } | ||
| 7 | description = { | ||
| 8 | summary = "File System Library for the Lua Programming Language", | ||
| 9 | detailed = [[ | ||
| 10 | LuaFileSystem is a Lua library developed to complement the set of | ||
| 11 | functions related to file systems offered by the standard Lua | ||
| 12 | distribution. LuaFileSystem offers a portable way to access the | ||
| 13 | underlying directory structure and file attributes. | ||
| 14 | ]], | ||
| 15 | license = "MIT/X11", | ||
| 16 | } | ||
| 17 | dependencies = { | ||
| 18 | "lua >= 5.1" | ||
| 19 | } | ||
| 20 | build = { | ||
| 21 | type = "builtin", | ||
| 22 | modules = { | ||
| 23 | lfs = "src/lfs.c" | ||
| 24 | }, | ||
| 25 | copy_directories = { | ||
| 26 | "doc", "tests" | ||
| 27 | } | ||
| 28 | } | ||
