X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=10cf98562fc9b6e5bb3654052863d97afbb3c9ea;hb=1049fa807fd67ac2bb64beaf8d47a9077ebc90b5;hp=24970e2fc4f9c1f58d1ad5cfe231fc5420712bff;hpb=1c99d822a8a945b775b496d492f87cface32e24c;p=catagits%2FCatalyst-Plugin-Cache.git diff --git a/Makefile.PL b/Makefile.PL index 24970e2..10cf985 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,15 @@ -use ExtUtils::MakeMaker; -WriteMakefile( - 'NAME' => 'Catalyst::Plugin::Cache', - 'VERSION_FROM' => 'lib/Catalyst/Plugin/Cache.pm', - 'PREREQ_PM' => { - 'Catalyst' => '5.7', - 'Storable' => 0, - 'Task::Weaken' => 0, - 'Test::Deep' => 0, - 'Test::Exception' => 0, - 'Test::More' => 0, - 'MRO::Compat' => 0, - 'ok' => 0, - }, - 'INSTALLDIRS' => 'site', - 'EXE_FILES' => [], - 'PL_FILES' => {}, -); +use inc::Module::Install; + +name 'Catalyst-Plugin-Cache'; +all_from 'lib/Catalyst/Plugin/Cache.pm'; +requires 'Catalyst' => '5.7'; +requires 'Storable' => 0; +requires 'Task::Weaken' => 0; +test_requires 'Test::Deep' => 0; +test_requires 'Test::Exception' => 0; +test_requires 'Test::More' => '0.88'; +requires 'MRO::Compat' => 0; + +resources repository => 'http://dev.catalyst.perl.org/repos/Catalyst/trunk/Catalyst-Plugin-Cache'; +WriteAll; +