X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Frgit.git;a=blobdiff_plain;f=Makefile.PL;h=bbe18c2e20249e807f58cd431e4dd541ee3e4ab2;hp=ef489917b59408de7c73da224a11b33d2f655bc9;hb=edfd59020168422fe2c1baa014f0925968a77c9a;hpb=640138ffe66c29acfb83990e765f6adeb17e1e53 diff --git a/Makefile.PL b/Makefile.PL index ef48991..bbe18c2 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,42 +29,36 @@ 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/", 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", }, ); WriteMakefile( - NAME => 'rgit', - 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, - }, - MIN_PERL_VERSION => 5.008, - META_MERGE => \%META, - dist => { - PREOP => 'pod2text bin/rgit > $(DISTVNAME)/README', - COMPRESS => 'gzip -9f', SUFFIX => 'gz' - }, - clean => { - FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" - } + 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 => \%PREREQ_PM, + MIN_PERL_VERSION => 5.008, + META_MERGE => \%META, + dist => { + PREOP => 'pod2text bin/rgit > $(DISTVNAME)/README', + COMPRESS => 'gzip -9f', SUFFIX => 'gz' + }, + clean => { + FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt" + } );