X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=019a3ccd4dbd1f9954fef7b2be8f5f672e78e444;hb=15bce928ef17bf3b2de8c18bc39fb0f954a59663;hp=c05a4d0f859d6117bc653ef35bfd0b2dcf6f6ee0;hpb=84b9e9a59ed0ceb9d4fdf1baffc5239a433a56e9;p=scpubgit%2FTest-Harness-Selenium.git diff --git a/Makefile.PL b/Makefile.PL index c05a4d0..019a3cc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,22 @@ -use ExtUtils::MakeMaker; +use inc::Module::Install; -WriteMakefile( - NAME => 'Test-Harness-Selenium', - VERSION_FROM => 'lib/Test/Harness/Selenium.pm', - LICENSE => 'perl', - PREREQ_PM => { - map +($_ => 0), qw( - File::Find::Rule - Socialtext::WikiFixture::Selenese - HTML::TableExtract - IO::All - Alien::SeleniumRC - Child - Class::Method::Modifiers - strictures - ) - } -); +name 'Test-Harness-Selenium'; +all_from 'lib/Test/Harness/Selenium.pm'; +requires 'File::Find::Rule' => 0; +requires 'Socialtext::WikiFixture::Selenese' => 0; +requires 'HTML::TableExtract' => 0; +requires 'IO::All' => 0; +requires 'Alien::SeleniumRC' => 0; +requires 'Child' => 0; +requires 'Class::Method::Modifiers' => 0; +requires 'LWP::Simple' => 0; + +# this is the right line but the toolchain doesn't seem to find it even though +# it's installed. +requires 'strictures' => 0; + +test_requires 'Catalyst::Devel' => 0; +test_requires 'Catalyst::Runtime' => 0; + +auto_install; +WriteAll;