]> git.donarmstrong.com Git - perltidy.git/blob - Makefile.PL
all debian patches are now upstream
[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     META_MERGE => {
18         'meta-spec' => { version => 2 },
19         resources   => {
20             repository => {
21                 type => 'git',
22                 url  => 'https://github.com/perltidy/perltidy.git',
23                 web  => 'https://github.com/perltidy/perltidy',
24             },
25         },
26     },
27 );