X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=45042d1a33dfabb78b19f8bca8da871c6c9e598a;hb=people%2Fnap%2Fzoom_evented_xmltags;hp=b8a521e90b83cbb4cc05df4ac4f5e3c7439aed96;hpb=4a610f74ec432feb55a3bb6bb1269ccbda5a3c36;p=catagits%2FWeb-Simple.git diff --git a/Makefile.PL b/Makefile.PL index b8a521e..45042d1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,8 +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'; -requires 'Perl6::Gather'; +(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', + }, +);