X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=a8f5ab3a1eb7396c783c94b84c44fbe65b55ea6e;hb=b2e37c62aa27ca0459e4863f1dcf502769db0786;hp=182fb0168eb5a451022ecc2eee6cf39c04059993;hpb=b134433d1514d89716e596c4c60a6ae580d30a80;p=catagits%2FWeb-Simple.git diff --git a/Makefile.PL b/Makefile.PL index 182fb01..a8f5ab3 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 'Syntax::Keyword::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.009014', + 'warnings::illegalproto' => '0.001', + 'Data::Dumper::Concise' => '2.020', + }, +);