mirror of
https://git.freebsd.org/ports.git
synced 2025-05-20 11:03:09 -04:00
31 lines
812 B
Makefile
31 lines
812 B
Makefile
PORTNAME= lua-resty-core
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.1.29
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
# ALT_MAINTAINERS flo@freebsd.org, osa@freebsd.org, joneum@freebsd.org
|
|
# This port must be kept in sync with www/nginx/* lua module
|
|
COMMENT= New FFI-based Lua API for OpenResty NGINX Lua modules
|
|
WWW= https://github.com/openresty/lua-resty-core
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
RUN_DEPENDS= lua-resty-lrucache>=0.10:www/lua-resty-lrucache \
|
|
luajit-openresty>=2.1:lang/luajit-openresty
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= openresty
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
LUA_MODSHAREDIR= ${LOCALBASE}/share/lua/5.1
|
|
|
|
PLIST_SUB= LUA_MODSHAREDIR=${LUA_MODSHAREDIR}
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${LUA_MODSHAREDIR}
|
|
@(cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${LUA_MODSHAREDIR} "-name *\.lua")
|
|
|
|
.include <bsd.port.mk>
|