X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=be9b1284cfefc6a57715e5d4363a2b43e704677f;hb=ab889828ea9c491f54786f99218c919a98bd22a7;hp=9f6aac42634e6f4b66a80ec9001e91a3ea55816b;hpb=17f4b77eacf0c644e07c8467e6b1a19dad1b2753;p=perl%2Fmodules%2FBit-MorseSignals.git diff --git a/Makefile.PL b/Makefile.PL index 9f6aac4..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 => { @@ -41,6 +46,6 @@ WriteMakefile( COMPRESS => 'gzip -9f', SUFFIX => 'gz' }, clean => { - FILES => "$dist-* *.gcov *.gcda *.gcno cover_db" + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" }, );