forked from luaforge/luazip
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Tomas Guisasola
committed
Sep 2, 2013
1 parent
c4e1086
commit 6666bb9
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", }, | ||
} |