X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=bbd51bc1879cb5ba4f58575a13957c4ed4ba3ed7;hb=6ee6b2dc9e125ae16be4a61048b1e4da3e237bf0;hp=30db0fcc9914412bb0e2e7273e7a5ffb9cd77264;hpb=e4e3b52cf15ff10ff86c612922ae599884662f71;p=catagits%2FWeb-Simple.git diff --git a/Makefile.PL b/Makefile.PL index 30db0fc..bbd51bc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,7 +1,18 @@ use strict; use warnings FATAL => 'all'; -use inc::Module::Install 0.91; +use 5.008001; +use ExtUtils::MakeMaker; -all_from 'lib/Web/Simple.pm'; +(do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml'; -WriteAll; +WriteMakefile( + NAME => 'Web::Simple', + VERSION_FROM => 'lib/Web/Simple.pm', + PREREQ_PM => { + 'Syntax::Keyword::Gather' => '1.001', + 'Plack' => '0.9968', + 'Moo' => '0.009005', + 'warnings::illegalproto' => '0.001', + 'Data::Dumper::Concise' => '2.020', + }, +);