1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00
freebsd-ports/lang/fennel/Makefile
Joseph Mingrone e202fa6118
lang/fennel: Update to 1.4.2 and fix test
Fix one test that was failing because it could only find lua executables
with a version in the filename if it was in the form luax.y (e.g.,
lua5.4), but not luaxy (e.g., lua54) as we have.

Changelog:	https://git.sr.ht/~technomancy/fennel/tree/1.4.2/item/changelog.md
Sponsored by:	The FreeBSD Foundation
2024-03-28 19:29:22 -03:00

36 lines
802 B
Makefile

PORTNAME= fennel
DISTVERSION= 1.4.2
CATEGORIES= lang
MASTER_SITES= https://git.sr.ht/~technomancy/${PORTNAME}/archive/${DISTVERSION}${EXTRACT_SUFX}?dummy=/
MAINTAINER= jrm@FreeBSD.org
COMMENT= Lisp that compiles to Lua
WWW= https://fennel-lang.org/
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE
USES= gmake lua:51+,build,run
MAKE_ENV= DESTDIR=${STAGEDIR} \
LUA=${LUA_CMD} \
LUA_DIR=${LOCALBASE} \
LUA_INCLUDE_DIR=${LUA_INCDIR} \
LUA_VERSION=${LUA_VER} \
MAN_DIR=${PREFIX}/share \
NATIVE_LUA_LIB=${LUA_LIBDIR}/liblua-${LUA_VER}.a \
STATIC_LUA_LIB=${LUA_LIBDIR}/liblua-${LUA_VER}.a
ALL_TARGET= build
TEST_TARGET= test
NO_ARCH= yes
OPTIONS_DEFINE= DOCS
do-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${WRKSRC}/*.md ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>