Skip to content

Commit

Permalink
Rockspec for release 1.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomas Guisasola committed Sep 2, 2013
1 parent c4e1086 commit 6666bb9
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions rockspec/luazip-1.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package = "LuaZip"
version = "1.3-1"
source = {
url = "https://github.com/tomasguisasola/luazip/archive/v1.3.tar.gz",
md5 = "",
dir = "luazip-1.3",
}
description = {
summary = "Library for reading files inside zip files",
detailed = [[
LuaZip is a lightweight Lua extension library used to read files
stored inside zip files. The API is very similar to the standard
Lua I/O library API.
]],
license = "MIT/X11",
homepage = "http://www.keplerproject.org/luazip/"
}
dependencies = {
"lua >= 5.0"
}
external_dependencies = {
ZZIP = {
header = "zzip.h"
}
}
build = {
type = "builtin",
modules = {
zip = {
sources = { "src/luazip.c" },
libraries = { "zzip" },
incdirs = { "$(ZZIP_INCDIR)", "src/" },
libdirs = { "$(ZZIP_LIBDIR)" },
},
},
copy_directories = { "doc", "tests", },
}

0 comments on commit 6666bb9

Please sign in to comment.