X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=98ed9c993e23726565e1303df9767dc8d9cf3b84;hb=a4e747a2dff3021072809234c43eed4f0f3cf4b1;hp=1a9f71425318972ba7efe1ba84fdfc695a6b8a29;hpb=6166f03d12382556473156bd939721414a11fcb2;p=catagits%2FCatalyst-Component-ACCEPT_CONTEXT.git diff --git a/Makefile.PL b/Makefile.PL index 1a9f714..98ed9c9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,17 @@ use inc::Module::Install; +use strict; +use warnings; name 'Catalyst-Component-ACCEPT_CONTEXT'; all_from 'lib/Catalyst/Component/ACCEPT_CONTEXT.pm'; -build_requires 'Catalyst::Runtime'; -build_requires 'Test::WWW::Mechanize::Catalyst'; -build_requires 'Test::More'; -build_requires 'ok'; +requires 'Catalyst'; +requires 'Scalar::Util'; +requires 'MRO::Compat'; +build_requires 'Devel::Cycle'; + +resources respository => 'git://git.shadowcat.co.uk/catagits/Catalyst-Component-ACCEPT_CONTEXT'; + +auto_install; +WriteAll; -WriteAll();