]> git.donarmstrong.com Git - perltidy.git/blob - Makefile.PL
[svn-inject] Installing original source of perltidy
[perltidy.git] / Makefile.PL
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 #
9 use ExtUtils::MakeMaker;
10 WriteMakefile(
11 NAME  => "Perl::Tidy",
12 VERSION_FROM => "lib/Perl/Tidy.pm",
13 (
14   $] >= 5.005
15 ? (
16   ABSTRACT => 'indent and reformat perl scripts',
17 AUTHOR => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
18   )
19 : ()
20 ),
21 EXE_FILES => ['bin/perltidy'],
22 dist  => { COMPRESS => 'gzip', SUFFIX => 'gz' },
23 );