mirror of
https://github.com/ctruLua/ctruLua.git
synced 2025-10-27 16:39:29 +00:00
Moved lzlib to the libs directory (cleaner)
This commit is contained in:
parent
406e17d321
commit
4aad32d5ab
23 changed files with 2593 additions and 991 deletions
37
libs/lzlib/rockspec/lzlib-git-1.rockspec
Normal file
37
libs/lzlib/rockspec/lzlib-git-1.rockspec
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
package="lzlib"
|
||||
version="git-1"
|
||||
source = {
|
||||
url = "git://github.com/LuaDist/lzlib.git",
|
||||
branch = "master",
|
||||
}
|
||||
description = {
|
||||
summary = "Lua bindings to the ZLib compression library",
|
||||
detailed = [[
|
||||
This package provides a library to access zlib library functions
|
||||
and also to read/write gzip files using an interface similar
|
||||
to the base io package.
|
||||
]],
|
||||
homepage = "http://luaforge.net/projects/lzlib/",
|
||||
license = "MIT/X11"
|
||||
}
|
||||
dependencies = {
|
||||
"lua >= 5.1"
|
||||
}
|
||||
external_dependencies = {
|
||||
ZLIB = {
|
||||
header = "zlib.h",
|
||||
library = "z",
|
||||
}
|
||||
}
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
zlib = {
|
||||
sources = "lzlib.c",
|
||||
libdirs = "$(ZLIB_LIBDIR)",
|
||||
incdirs = "$(ZLIB_INCDIR)",
|
||||
libraries = "z",
|
||||
},
|
||||
gzip = "gzip.lua",
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue