mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
febc6fb009
Perl distributions. Its purpose is to take care of the mechanisms of locating and extracting a Perl distribution so that your module can do something specific to the distribution. This module was originally created to provide an abstraction for the extraction logic for both Module::Inspector and Module::P4P and to allow additional features to be added in the future without having to modify both of them, because the general problem of "locate, download, and expand a distribution" is one that is almost ideal for adding additional features down the line. WWW: http://search.cpan.org/dist/Module-Extract/ PR: ports/132406 Submitted by: Cezary Morga <cm at therek.net>
25 lines
531 B
Makefile
25 lines
531 B
Makefile
# New ports collection makefile for: p5-Module-Extract
|
|
# Date created: March 8th 2009
|
|
# Whom: Cezary Morga <cm@therek.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= Module-Extract
|
|
PORTVERSION= 0.01
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= CPAN
|
|
PKGNAMEPREFIX= p5-
|
|
|
|
MAINTAINER= cm@therek.net
|
|
COMMENT= Base class for working with Perl distributions
|
|
|
|
BUILD_DEPENDS= ${SITE_PERL}/Archive/Extract.pm:${PORTSDIR}/archivers/p5-Archive-Extract
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
|
|
PERL_CONFIGURE= YES
|
|
|
|
MAN3= Module::Extract.3
|
|
|
|
.include <bsd.port.mk>
|