/usr/local/CPAN/tidyview/Makefile.PL
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'tidyview',
ABSTRACT => "Preview the effects of perltidy's plethora of options",
AUTHOR => "Leif Eriksen <tidyview@tidyview.sourceforge.net>",
VERSION_FROM => 'lib/TidyView/VERSION.pm',
PREREQ_PM => {
'Tk' => '800.025',
'Tk::DiffText' => 0,
'Perl::Tidy' => 0, # comes in the perltidy application
'Log::Log4perl' => '1.0',
'version' => 0, # used to detect old Tk's and use different widgets where required
},
test => {'TESTS' => join(' ', qw(lib/PerlTidy/t/*.t lib/TidyView/t/*.t))},
EXE_FILES => [ "bin/tidyview.pl", "bin/log.conf" ],
);