]> git.vpit.fr Git - perl/modules/rgit.git/blobdiff - Makefile.PL
Build the $name from $dist
[perl/modules/rgit.git] / Makefile.PL
index d6617ff81b0facc257cfc690ecf99b48604c82ea..54b937d024153a9869967fcd851e6ddaec8435cc 100644 (file)
@@ -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,6 +29,7 @@ my %META = (
   'File::Spec::Functions' => 0,
   'File::Temp'            => 0,
   'Test::More'            => 0,
+  %PREREQ_PM,
  },
  recommends => {
   'Term::ReadKey' => 0,
@@ -30,23 +44,14 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => 'rgit',
+    NAME             => $name,
     AUTHOR           => 'Vincent Pit <perl@profvince.com>',
     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             => {