]> git.donarmstrong.com Git - perltidy.git/blob - Makefile.PL
New upstream version 20181120
[perltidy.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 WriteMakefile(
3     NAME         => "Perl::Tidy",
4     VERSION_FROM => "lib/Perl/Tidy.pm",
5     (
6         $] >= 5.005
7         ? (
8             ABSTRACT => 'indent and reformat perl scripts',
9             LICENSE  => 'gpl_2',
10             AUTHOR   => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
11           )
12         : ()
13     ),
14
15     EXE_FILES => ['bin/perltidy'],
16     dist => { COMPRESS => 'gzip', SUFFIX => 'gz' },
17 );