X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FBit-MorseSignals.git;a=blobdiff_plain;f=Makefile.PL;h=9f6aac42634e6f4b66a80ec9001e91a3ea55816b;hp=448a80b5e4cdd93dc923de17352b3dc4aa2dc0f1;hb=17f4b77eacf0c644e07c8467e6b1a19dad1b2753;hpb=c897b49aebc38815d86d180f6009b3a480d5e907 diff --git a/Makefile.PL b/Makefile.PL index 448a80b..9f6aac4 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,39 +2,45 @@ use strict; use warnings; use ExtUtils::MakeMaker; -my $BUILD_REQUIRES = { - 'utf8' => 0, - 'ExtUtils::MakeMaker' => 0, - 'Test::More' => 0, -}; +my $dist = 'Bit-MorseSignals'; -sub build_req { - my $tometa = ' >> $(DISTVNAME)/META.yml;'; - my $build_req = 'echo "build_requires:" ' . $tometa; - foreach my $mod ( sort { lc $a cmp lc $b } keys %$BUILD_REQUIRES ) { - my $ver = $BUILD_REQUIRES->{$mod}; - $build_req .= sprintf 'echo " %-30s %s" %s', "$mod:", $ver, $tometa; - } - return $build_req; -} +my %META = ( + configure_requires => { + 'ExtUtils::MakeMaker' => 0, + }, + build_requires => { + 'utf8' => 0, + 'ExtUtils::MakeMaker' => 0, + 'Test::More' => 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", + }, +); WriteMakefile( - NAME => 'Bit::MorseSignals', - AUTHOR => 'Vincent Pit ', - LICENSE => 'perl', - VERSION_FROM => 'lib/Bit/MorseSignals.pm', - ABSTRACT_FROM => 'lib/Bit/MorseSignals.pm', - PL_FILES => {}, - PREREQ_PM => { + NAME => 'Bit::MorseSignals', + AUTHOR => 'Vincent Pit ', + LICENSE => 'perl', + VERSION_FROM => 'lib/Bit/MorseSignals.pm', + ABSTRACT_FROM => 'lib/Bit/MorseSignals.pm', + PL_FILES => {}, + PREREQ_PM => { 'Carp' => 0, 'Encode' => 0, 'Exporter' => 0, 'Storable' => 0, }, - dist => { - PREOP => 'pod2text lib/Bit/MorseSignals.pm > $(DISTVNAME)/README; ' - . build_req, - COMPRESS => 'gzip -9f', SUFFIX => 'gz' + MIN_PERL_VERSION => 5.008, + META_MERGE => \%META, + dist => { + PREOP => 'pod2text lib/Bit/MorseSignals.pm > $(DISTVNAME)/README', + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db" }, - clean => { FILES => 'Bit-MorseSignals-* *.gcov *.gcda *.gcno cover_db' }, );