X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=48d5d60feb878bdd24a11c820eebdab334261b6d;hb=ab8ae98c36d0517cddb19c6e1b3bdfecab5ebcf7;hp=5801f3a05e3becf35b2d1b334d0035324cc57d4a;hpb=8f552b3b1a93a93723b1fe30461bed018536d9b9;p=catagits%2FTest-WWW-Selenium-Catalyst.git diff --git a/Makefile.PL b/Makefile.PL index 5801f3a..48d5d60 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -2,24 +2,18 @@ use strict; use warnings; use inc::Module::Install; -name('Test-WWW-Selenium-Catalyst'); -author('Jonathan Rockway '); -version_from('lib/Test/WWW/Selenium/Catalyst.pm'); -abstract_from('lib/Test/WWW/Selenium/Catalyst.pm'); -license('Perl'); -include('ExtUtils::AutoInstall'); +name 'Test-WWW-Selenium-Catalyst'; +perl_version '5.008000'; +all_from 'lib/Test/WWW/Selenium/Catalyst.pm'; +license 'Perl'; requires( 'Alien::SeleniumRC' => 0, 'Catalyst::Runtime' => 5.7001, 'Test::WWW::Selenium' => 0, 'Test::More' => 0, 'Catalyst::Utils' => 0, - ); +); + +test_requires 'IPC::Cmd' => '0.42'; -# Old vers of CPAN dont set the env var. safer to assume we are running than -# ask about deps twice -my $under_cpan = $ENV{PERL5_CPANPLUS_IS_RUNNING} || - $ENV{PERL5_CPAN_IS_RUNNING} || - do { require CPAN; $CPAN::VERSION < 1.92 }; -$under_cpan or auto_install(); WriteAll();