X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=c1501a612ed9c5ff05f4f48250e9d84d5023fa48;hb=826670f99c7d83b218b7067d4a3d3ce3e32e49a9;hp=58e61fda9f943673af2f73b7c4192e1aeaec12fb;hpb=f366138eaad19d73e63a638197e8c99e858d54d6;p=catagits%2FCatalyst-Authentication-Credential-HTTP.git diff --git a/Makefile.PL b/Makefile.PL index 58e61fd..c1501a6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,16 @@ -use ExtUtils::MakeMaker; -WriteMakefile( - 'NAME' => 'Catalyst::Plugin::Authentication::Credential::HTTP', - 'VERSION_FROM' => 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm', - 'PREREQ_PM' => { - 'Catalyst' => '5.49', - 'Catalyst::Plugin::Authentication' => 0, - 'Data::UUID' => '0.11', - 'String::Escape' => 0, - 'Test::Exception' => 0, - 'Test::MockObject' => '1.01', - 'URI::Escape' => 0, - }, - 'INSTALLDIRS' => 'site', - 'EXE_FILES' => [], - 'PL_FILES' => {}, - 'SIGN' => 1, -); +use inc::Module::Install 0.65; + +name 'Catalyst-Plugin-Authentication-Credential-HTTP'; +all_from 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm'; + +requires 'Catalyst::Runtime'; +requires 'Catalyst::Plugin::Authentication'; +requires 'Data::UUID' => '0.11'; +requires 'String::Escape'; +requires 'Test::Exception'; +requires 'Test::MockObject'; +requires 'URI::Escape'; + +auto_install; +WriteAll; +