X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=be9b1284cfefc6a57715e5d4363a2b43e704677f;hb=ab889828ea9c491f54786f99218c919a98bd22a7;hp=8edae496731d4ce44e70eb076005dab82a939629;hpb=59ac23acb023d8b58679dd2e661377bca609e550;p=perl%2Fmodules%2FBit-MorseSignals.git diff --git a/Makefile.PL b/Makefile.PL index 8edae49..be9b128 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,6 +4,14 @@ use ExtUtils::MakeMaker; my $dist = 'Bit-MorseSignals'; +my %PREREQ_PM = ( + 'Carp' => 0, + 'Encode' => 0, + 'Exporter' => 0, + 'Storable' => 0, + 'base' => 0, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -12,12 +20,14 @@ my %META = ( 'utf8' => 0, 'ExtUtils::MakeMaker' => 0, 'Test::More' => 0, + %PREREQ_PM, }, + dynamic_config => 0, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/", license => 'http://dev.perl.org/licenses/', - repository => "http://git.profvince.com/perl/modules/$dist.git", + repository => "http://git.profvince.com/?p=perl%2Fmodules%2F$dist.git", }, ); @@ -28,12 +38,7 @@ WriteMakefile( VERSION_FROM => 'lib/Bit/MorseSignals.pm', ABSTRACT_FROM => 'lib/Bit/MorseSignals.pm', PL_FILES => {}, - PREREQ_PM => { - 'Carp' => 0, - 'Encode' => 0, - 'Exporter' => 0, - 'Storable' => 0, - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META, dist => {