mirror of
https://git.freebsd.org/ports.git
synced 2025-05-31 02:16:27 -04:00
Extensible Cyclomatic Complexity Analyzer Lizard is an extensible Cyclomatic Complexity Analyzer for many programming languages including C/C++ (doesn't require all the header files or Java imports). It also does copy-paste detection (code clone detection/code duplicate detection) and many other forms of static code analysis. WWW: https://github.com/terryyin/lizard Sponsored by: The FreeBSD Foundation
21 lines
429 B
Makefile
21 lines
429 B
Makefile
PORTNAME= lizard
|
|
DISTVERSION= 1.17.10
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= PYPI
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Extensible Cyclomatic Complexity Analyzer
|
|
WWW= https://github.com/terryyin/lizard
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils unittest2
|
|
|
|
NO_ARCH= yes
|
|
|
|
TEST_WRKSRC= ${WRKSRC}/tests
|
|
|
|
.include <bsd.port.mk>
|