Skip to content

Commit

Permalink
Add rockspec for 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Sep 15, 2017
1 parent 754576d commit bd42f93
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions rockspecs/luafilesystem-1.7.0-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
package = "LuaFileSystem"
version = "1.7.0-1"
source = {
url = "git://github.com/keplerproject/luafilesystem",
tag = "v1_7_0",
}
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"
}
}

0 comments on commit bd42f93

Please sign in to comment.