]> git.donarmstrong.com Git - perltidy.git/blob - Makefile.PL
Imported Upstream version 20140328
[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   LICENSE => 'GPL-2.0+',
18 AUTHOR => 'Steve Hancock <perltidy@perltidy.sourceforge.net>'
19   )
20 : ()
21 ),
22 EXE_FILES => ['bin/perltidy'],
23 dist  => { COMPRESS => 'gzip', SUFFIX => 'gz' },
24 );