]> git.vpit.fr Git - perl/modules/re-engine-Plugin.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 7ade66373ec9caa8ac5f0d4eea81e744d112dbc4..3132b625f74401cd66c47546b5e6312b5cbf373f 100644 (file)
@@ -31,23 +31,23 @@ my %META = (
 );
 
 WriteMakefile(
-    NAME             => $name,
-    AUTHOR           => 'Vincent Pit <perl@profvince.com>',
-    LICENSE          => 'perl',
-    ABSTRACT_FROM    => 'Plugin.pod',
-    VERSION_FROM     => 'Plugin.pm',
-    PL_FILES         => {},
-    PREREQ_PM        => \%PREREQ_PM,
-    MIN_PERL_VERSION => 5.010,
-    META_MERGE       => \%META,
-    dist             => {
-        PREOP    => 'pod2text Plugin.pod > $(DISTVNAME)/README',
-        COMPRESS => 'gzip -9f', SUFFIX => 'gz'
-    },
-    clean            => {
-        FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
-    },
-    test             => {
-        TESTS => 't/*.t t/*/*.t t/*/*/*.t',
-    },
+ NAME             => $name,
+ AUTHOR           => 'Vincent Pit <perl@profvince.com>',
+ LICENSE          => 'perl',
+ ABSTRACT_FROM    => 'Plugin.pod',
+ VERSION_FROM     => 'Plugin.pm',
+ PL_FILES         => {},
+ PREREQ_PM        => \%PREREQ_PM,
+ MIN_PERL_VERSION => 5.010,
+ META_MERGE       => \%META,
+ dist             => {
+  PREOP    => 'pod2text Plugin.pod > $(DISTVNAME)/README',
+  COMPRESS => 'gzip -9f', SUFFIX => 'gz'
+ },
+ clean            => {
+  FILES => "$dist-* *.gcov *.gcda *.gcno cover_db Debian_CPANTS.txt"
+ },
+ test             => {
+  TESTS => 't/*.t t/*/*.t t/*/*/*.t',
+ },
 );