91223a6add
Perl::Critic is an extensible framework for creating and applying coding standards to Perl source code. Essentially, it is a static source code analysis engine. Perl::Critic is distributed with a number of Perl::Critic::Policy modules that attempt to enforce various coding guidelines. Most Policy modules are based on Damian Conway's book Perl Best Practices. However, Perl::Critic is not limited to PBP and will even support Policies that contradict Conway. You can enable, disable, and customize those Polices through the Perl::Critic interface. You can also create new Policy modules that suit your own tastes.
30 lines
597 B
Makefile
30 lines
597 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/11/17 02:16:42 msf Exp $
|
|
|
|
COMMENT= "sprintf-like string formatting"
|
|
|
|
MODULES= cpan
|
|
|
|
DISTNAME= Perl-Critic-0.21
|
|
CATEGORIES= devel perl5
|
|
|
|
MAINTAINER= Mathieu Sauve-Frankel <msf@kisoku.net>
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
BUILD_DEPENDS= ${RUN_DEPENDS}
|
|
RUN_DEPENDS= ::devel/p5-Config-Tiny \
|
|
::devel/p5-Module-Pluggable \
|
|
::textproc/p5-PPI \
|
|
::devel/p5-Set-Scalar \
|
|
::devel/p5-String-Format
|
|
|
|
MAKE_ENV+= TEST_POD=Yes
|
|
|
|
CONFIGURE_STYLE= perl modbuild
|
|
|
|
.include <bsd.port.mk>
|