]> git.vpit.fr Git - perl/modules/indirect.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 42b016a45fe86a680b974ad49b60a6f76113c611..39749fc51d3f26e1bd43b7ca331d5245bcd8e328 100644 (file)
@@ -48,21 +48,21 @@ my %META = (
 );
 
 WriteMakefile(
 );
 
 WriteMakefile(
   NAME             => $name,
   AUTHOR           => 'Vincent Pit <perl@profvince.com>',
   LICENSE          => 'perl',
   VERSION_FROM     => $file,
   ABSTRACT_FROM    => $file,
   PL_FILES         => {},
   @DEFINES,
   PREREQ_PM        => \%PREREQ_PM,
   MIN_PERL_VERSION => 5.008,
   META_MERGE       => \%META,
   dist             => {
-        PREOP    => "pod2text $file > \$(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     => $file,
+ ABSTRACT_FROM    => $file,
+ PL_FILES         => {},
+ @DEFINES,
+ PREREQ_PM        => \%PREREQ_PM,
+ MIN_PERL_VERSION => 5.008,
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => "pod2text $file > \$(DISTVNAME)/README",
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ },
 );
 );