mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
32 lines
608 B
Makefile
32 lines
608 B
Makefile
PORTNAME= phpunit
|
|
PORTVERSION= 9.5.10
|
|
CATEGORIES= devel www
|
|
MASTER_SITES= https://phar.phpunit.de/
|
|
PKGNAMESUFFIX= 9${PHP_PKGNAMESUFFIX}
|
|
EXTRACT_SUFX= .phar
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Testing framework for unit tests
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
|
|
USES= cpe php:flavors
|
|
USE_PHP= dom json pcre phar spl
|
|
|
|
NO_ARCH= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/phpunit
|
|
|
|
CONFLICTS_INSTALL= phpunit6 phpunit7 phpunit8
|
|
|
|
CPE_VENDOR= phpunit_project
|
|
|
|
do-extract:
|
|
@${CP} ${DISTDIR}/${DISTFILES} ${WRKDIR}/phpunit
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/phpunit ${STAGEDIR}${PREFIX}/bin/phpunit
|
|
|
|
.include <bsd.port.mk>
|