29ff128467
Module::CheckDeps parses Perl code searching for used modules. It can either return a list of all the modules used by some code, or a list of the used modules that are not available in the host system (e.g. not installed modules). Compared to similar modules, such as Module::ScanDeps, Module::CheckDeps is simpler and less powerful, but also much faster. WWW: http://search.cpan.org/dist/Module-CheckDeps https://github.com/AlexBio/Module-CheckDeps
25 lines
530 B
Makefile
25 lines
530 B
Makefile
# New ports collection makefile for: p5-Module-CheckDeps
|
|
# Date created: 2010-07-02
|
|
# Whom: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Module-CheckDeps
|
|
PORTVERSION= 0.08
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
MASTER_SITE_SUBDIR= CPAN:ALEXBIO
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Very simple dependencies checker for Perl code
|
|
|
|
RUN_DEPENDS= p5-PPI>=0:${PORTSDIR}/textproc/p5-PPI
|
|
|
|
PERL_CONFIGURE= yes
|
|
|
|
MAN1= checkdeps.1
|
|
MAN3= Module::CheckDeps.3
|
|
|
|
.include <bsd.port.mk>
|