]> git.donarmstrong.com Git - perltidy.git/blobdiff - Makefile.PL
New upstream version 20181120
[perltidy.git] / Makefile.PL
old mode 100644 (file)
new mode 100755 (executable)
index 968a70a..dab6865
@@ -1,24 +1,17 @@
-# 
-# The indentation of this file is poor because this file may be used to
-# test perltidy after installation. For example, try
-#
-#    perltidy -lp Makefile.PL
-#
-# which will create a reformatted version as Makefile.PL.tdy.
-#
 use ExtUtils::MakeMaker;
 WriteMakefile(
-NAME  => "Perl::Tidy",
-VERSION_FROM => "lib/Perl/Tidy.pm",
-(
-  $] >= 5.005
-? (
-  ABSTRACT => 'indent and reformat perl scripts',
-  LICENSE => 'GPL-2.0+',
-AUTHOR => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
-  )
-: ()
-),
-EXE_FILES => ['bin/perltidy'],
-dist  => { COMPRESS => 'gzip', SUFFIX => 'gz' },
+    NAME         => "Perl::Tidy",
+    VERSION_FROM => "lib/Perl/Tidy.pm",
+    (
+        $] >= 5.005
+        ? (
+            ABSTRACT => 'indent and reformat perl scripts',
+            LICENSE  => 'gpl_2',
+            AUTHOR   => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
+          )
+        : ()
+    ),
+
+    EXE_FILES => ['bin/perltidy'],
+    dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
 );