opnsense-ports/www/unit-php/Makefile
Franco Fichtner f609f80dfc */*: sync with upstream
Taken from: FreeBSD
2023-05-15 09:07:47 +02:00

37 lines
873 B
Makefile

PKGNAMESUFFIX= ${PHP_PKGNAMESUFFIX}
UNIT_MODNAME= php${PHP_VER}
COMMENT= PHP module for NGINX Unit
PLIST_FILES= libexec/unit/modules/${UNIT_MODNAME}.unit.so
RUN_DEPENDS= unitd:www/unit
USES= php:build,embed,flavors
USE_RC_SUBR= # reset to empty
MASTERDIR= ${.CURDIR}/../unit
post-configure:
cd ${CONFIGURE_WRKSRC} && \
${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} php \
--lib-path=${LOCALBASE}/lib \
--module=${UNIT_MODNAME}
do-build:
cd ${CONFIGURE_WRKSRC} && \
${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} ${UNIT_MODNAME}
do-install:
${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unit/modules/
${INSTALL_LIB} ${WRKSRC}/build/lib/unit/modules/${UNIT_MODNAME}.unit.so \
${STAGEDIR}${PREFIX}/libexec/unit/modules/
# Overwrite the target in the ${MASTERDIR}/Makefile
post-install:
@${DO_NADA}
.include "${MASTERDIR}/Makefile"