X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Makefile.PL;h=dab68653d00e2a9244adbbb7fbf15d35766f2079;hb=b55d4d1bc6f3864a9b92da798e1083cb8299c2ee;hp=968a70a12cc643a7069f8e0860e836678b67ad55;hpb=70f31313f9e17d608246a6c3df1cc2f4cf0c1a0c;p=perltidy.git diff --git a/Makefile.PL b/Makefile.PL old mode 100644 new mode 100755 index 968a70a..dab6865 --- a/Makefile.PL +++ b/Makefile.PL @@ -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 ' - ) -: () -), -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 ' + ) + : () + ), + + EXE_FILES => ['bin/perltidy'], + dist => { COMPRESS => 'gzip', SUFFIX => 'gz' }, );