| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.4 | 8 | ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86 | 0 |
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
LUA_COMPAT=( lua5-{1..4} luajit )
inherit cmake lua
DESCRIPTION="Simple streaming interface to zlib for Lua"
HOMEPAGE="https://github.com/brimworks/lua-zlib"
SRC_URI="https://github.com/brimworks/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
REQUIRED_USE="${LUA_REQUIRED_USE}"
RDEPEND="
virtual/zlib:=
${LUA_DEPS}
"
DEPEND="${RDEPEND}"
src_prepare() {
sed -i '/CMAKE_MINIMUM_REQUIRED/s/2.6/3.10/' -i CMakeLists.txt || die
cmake_src_prepare
}
lua_src_configure() {
local mycmakeargs=(
-DINSTALL_CMOD="$(lua_get_cmod_dir)"
-DLUA_INCLUDE_DIR="$(lua_get_include_dir)"
-DUSE_LUA_VERSION="$(lua_get_version)"
)
if [[ ${ELUA} == luajit ]]; then
mycmakeargs+=( -DUSE_LUAJIT="ON" )
fi
cmake_src_configure
}
src_configure() {
lua_foreach_impl lua_src_configure
}
src_compile() {
lua_foreach_impl cmake_src_compile
}
src_install() {
lua_foreach_impl cmake_src_install
}
virtual/zlib:=
${LUA_DEPS}
virtual/zlib:=
${LUA_DEPS}
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | lua-zlib-1.4.tar.gz | 19499 bytes | https://github.com/brimworks/lua-zlib/archive/v1.4.tar.gz |