df5d581967
This module is a replacement for the most typical use of the h2xs utility bundled with all Perl distributions: the creation of the directories and files required for a pure-Perl module to be installable with make and distributable on the Comprehensive Perl Archive Network (CPAN). For Perl programmers, laziness is a virtue -- and modulemaker is far and away the laziest way to create a pure Perl distribution which meets all the requirements for worldwide distribution via CPAN.
22 lines
650 B
Makefile
22 lines
650 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/05/29 07:41:29 sno Exp $
|
|
#
|
|
|
|
DISTNAME= ExtUtils-ModuleMaker-0.51
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= devel perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=ExtUtils/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/ExtUtils-ModuleMaker/
|
|
COMMENT= Perl extension for creating modules (better than h2xs)
|
|
#LICENSE= ${PERL_LICENSE}
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
DEPENDS+= p5-File-Save-Home>=0.03:../../devel/p5-File-Save-Home
|
|
|
|
PERL5_PACKLIST= auto/ExtUtils/ModuleMaker/.packlist
|
|
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|