Add a new port devel/lua-lunit, maintained by Sergey V. Dyatko (submitter).
Lunit is a unit testing framework for lua, written in lua. It provides currently 27 assert functions, 8 type checking functions and a few miscellaneous functions for usage as an easy unit testing framework. The PKGNAMEPREFIX= lua- was approved of by Sergey V. Dyatko in private mail. Further changes over his submission are: - LUA_MODLIBDIR= ${PREFIX}/lib/lua/${LUA_VER}/${PORTNAME} removed (shadows lua framework setting) - remove ${MKDIR} ${LUA_MODLIBDIR} - we don't install any files there - change installation destionation from LOCALBASE to PREFIX, and create directory first PR: ports/177541 Submitted by: Sergey V. Dyatko
This commit is contained in:
parent
4c9b838add
commit
c3ec4b6526
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=320131
4 changed files with 72 additions and 0 deletions
56
devel/lua-lunit/Makefile
Normal file
56
devel/lua-lunit/Makefile
Normal file
|
@ -0,0 +1,56 @@
|
|||
# Created by: Sergey V. Dyatko <sergey.dyatko@gmail.com>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= lunit
|
||||
PORTVERSION= 0.5
|
||||
CATEGORIES= devel
|
||||
MASTER_SITES= http://www.mroth.net/${PORTNAME}/
|
||||
PKGNAMEPREFIX= lua-
|
||||
|
||||
MAINTAINER= sergey.dyatko@gmail.com
|
||||
COMMENT= Unit Testing Framework for Lua
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
USE_LUA= 5.1
|
||||
|
||||
DOCFILES= DOCUMENTATION README
|
||||
EXAMPLES= example.lua
|
||||
LUNIT_FILES= lunit-console.lua lunit-tests.lua lunit.lua
|
||||
|
||||
NO_BUILD= yes
|
||||
|
||||
OPTIONS_DEFINE= DOCS EXAMPLES
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
.if ${ARCH} == "amd64"
|
||||
CFLAGS+= -fPIC
|
||||
.endif
|
||||
|
||||
pre-install:
|
||||
${REINPLACE_CMD} -e 's|"lua"|"${LUA_CMD}"|g' ${WRKSRC}/lunit
|
||||
|
||||
do-install:
|
||||
${MKDIR} ${PREFIX}/bin
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/lunit ${PREFIX}/bin
|
||||
|
||||
.for lunit_part in ${LUNIT_FILES}
|
||||
${INSTALL_DATA} ${WRKSRC}/${lunit_part} ${LUA_MODSHAREDIR}
|
||||
.endfor
|
||||
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
${MKDIR} ${DOCSDIR}
|
||||
.for f in ${DOCFILES}
|
||||
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
|
||||
.endfor
|
||||
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}"
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MEXAMPLES}
|
||||
${MKDIR} ${EXAMPLESDIR}
|
||||
${INSTALL_DATA} ${WRKSRC}/example.lua ${EXAMPLESDIR}
|
||||
@${ECHO_MSG} "===> Examples installed in ${EXAMPLESDIR}"
|
||||
.endif
|
||||
|
||||
.include <bsd.port.mk>
|
2
devel/lua-lunit/distinfo
Normal file
2
devel/lua-lunit/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (lunit-0.5.tar.gz) = 36abb8c4f8a3602c7c2b043d5b3612c2836a637ad504b58041acac1ddccb1852
|
||||
SIZE (lunit-0.5.tar.gz) = 13528
|
5
devel/lua-lunit/pkg-descr
Normal file
5
devel/lua-lunit/pkg-descr
Normal file
|
@ -0,0 +1,5 @@
|
|||
Lunit is a unit testing framework for lua, written in lua. It provides currently
|
||||
27 assert functions, 8 type checking functions and a few miscellaneous functions
|
||||
for usage as an easy unit testing framework.
|
||||
|
||||
WWW: http://www.mroth.net/lunit/
|
9
devel/lua-lunit/pkg-plist
Normal file
9
devel/lua-lunit/pkg-plist
Normal file
|
@ -0,0 +1,9 @@
|
|||
bin/lunit
|
||||
%%LUA_MODSHAREDIR%%/lunit-tests.lua
|
||||
%%LUA_MODSHAREDIR%%/lunit-console.lua
|
||||
%%LUA_MODSHAREDIR%%/lunit.lua
|
||||
%%PORTDOCS%%%%DOCSDIR%%/DOCUMENTATION
|
||||
%%PORTDOCS%%%%DOCSDIR%%/README
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/example.lua
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in a new issue