Description: cloc counts blank lines, comment lines, and physical lines of source code in many programming languages. Given two versions of a code base, cloc can compute differences in blank, comment, and source lines. ok edd@ gonzalo@
33 lines
628 B
Makefile
33 lines
628 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2012/07/11 13:26:13 zinke Exp $
|
|
|
|
COMMENT= count lines of code
|
|
|
|
VERSION= 1.56
|
|
DISTNAME= cloc-${VERSION}
|
|
DIST_SUBDIR= cloc
|
|
|
|
CATEGORIES= textproc devel
|
|
|
|
HOMEPAGE= http://cloc.sourceforge.net/
|
|
|
|
MAINTAINER= Joerg Zinke <zinke@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=cloc/}
|
|
DISTFILES= ${DISTNAME}.pl
|
|
EXTRACT_ONLY=
|
|
|
|
NO_BUILD= Yes
|
|
NO_REGRESS= Yes
|
|
PKG_ARCH= *
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${FULLDISTDIR}/${DISTFILES} ${PREFIX}/bin/cloc
|
|
|
|
.include <bsd.port.mk>
|