1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/devel/aphpunit/Makefile
Torsten Zuehlsdorff 82be747872 devel/aphpunit: Upgrade from 1.7 to 1.8
Changelog:
- Bugfix: now exit with code 1, if no test-cases were found
- Bugfix: now exit with code 1, if not a single assertion was performed
- Bugfix: detected PHP errors are no longer unhandled. They are no reported as error

Changelog taken from: https://gitlab.toco-domains.de/tocOS/APHPUnit/blob/master/CHANGELOG

MFH:		2019Q2
2019-05-06 12:32:28 +00:00

32 lines
634 B
Makefile

# $FreeBSD$
PORTNAME= aphpunit
DISTVERSION= 1.8
CATEGORIES= devel www
MASTER_SITES= http://phar.toco-domains.de/
PKGNAMEPREFIX= ${PHP_PKGNAMEPREFIX}
EXTRACT_SUFX= .phar
MAINTAINER= tz@FreeBSD.org
COMMENT= Testing framework for unit tests
LICENSE= BSD2CLAUSE
USES= php:flavors
USE_PHP= mbstring pcntl phar posix sysvmsg
NO_ARCH= yes
NO_BUILD= yes
PLIST_FILES= bin/aphpunit
# Download isn't compressed or aggregated, it's just the single file
do-extract:
${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/${PORTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME} \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>