1#
2# The indentation of this file is poor because this file may be used to
3# test perltidy after installation. For example, try
4#
5#    perltidy -lp Makefile.PL
6#
7# which will create a reformatted version as Makefile.PL.tdy.
8#
9use ExtUtils::MakeMaker;
10WriteMakefile(
11NAME  => "Perl::Tidy",
12VERSION_FROM => "lib/Perl/Tidy.pm",
13(
14  $] >= 5.005
15? (
16  ABSTRACT => 'indent and reformat perl scripts',
17AUTHOR => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
18  )
19: ()
20),
21EXE_FILES => ['bin/perltidy'],
22dist  => { COMPRESS => 'gzip', SUFFIX => 'gz' },
23);
24