]> git.vpit.fr Git - perl/modules/rgit.git/commitdiff
Re-indent WriteMakefile() arguments
authorVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 09:18:03 +0000 (11:18 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 4 Oct 2009 09:18:03 +0000 (11:18 +0200)
Makefile.PL

index 54b937d024153a9869967fcd851e6ddaec8435cc..bbe18c2e20249e807f58cd431e4dd541ee3e4ab2 100644 (file)
@@ -44,21 +44,21 @@ my %META = (
 );
 
 WriteMakefile(
-    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        => \%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"
-    }
+ 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        => \%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"
+ }
 );