X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=54b937d024153a9869967fcd851e6ddaec8435cc;hb=cd8f7b1728e37a4bebbe7a5e293d3706b32a0eb7;hp=9d6696796b8591a1a705b515b3ad5f2161c7a4d0;hpb=78143e989c03db27a675b8eb8b7a3b1378270441;p=perl%2Fmodules%2Frgit.git diff --git a/Makefile.PL b/Makefile.PL index 9d66967..54b937d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -6,6 +6,19 @@ use ExtUtils::MakeMaker; my $dist = 'rgit'; +(my $name = $dist) =~ s{-}{::}g; + +my %PREREQ_PM = ( + 'Carp' => 0, + 'Cwd' => 0, + 'Exporter' => 0, + 'File::Find' => 0, + 'File::Spec::Functions' => 0, + 'Object::Tiny' => 0, + 'POSIX' => 0, + 'base' => 0, +); + my %META = ( configure_requires => { 'ExtUtils::MakeMaker' => 0, @@ -16,10 +29,12 @@ my %META = ( 'File::Spec::Functions' => 0, 'File::Temp' => 0, 'Test::More' => 0, + %PREREQ_PM, }, recommends => { 'Term::ReadKey' => 0, }, + dynamic_config => 0, resources => { bugtracker => "http://rt.cpan.org/NoAuth/ReportBug.html?Queue=$dist", homepage => "http://search.cpan.org/dist/$dist/", @@ -29,23 +44,14 @@ my %META = ( ); WriteMakefile( - NAME => 'rgit', + NAME => $name, AUTHOR => 'Vincent Pit ', LICENSE => 'perl', VERSION_FROM => 'lib/App/Rgit.pm', ABSTRACT => 'Recursively execute a command on all the git repositories in a directory tree.', PL_FILES => { }, EXE_FILES => [ 'bin/rgit' ], - PREREQ_PM => { - 'Carp' => 0, - 'Cwd' => 0, - 'Exporter' => 0, - 'File::Find' => 0, - 'File::Spec::Functions' => 0, - 'Object::Tiny' => 0, - 'POSIX' => 0, - 'base' => 0, - }, + PREREQ_PM => \%PREREQ_PM, MIN_PERL_VERSION => 5.008, META_MERGE => \%META, dist => {