X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;fp=Makefile.PL;h=d9919175ebe9afecc81ed5ef17da88866b16fb5c;hb=73ce4a6674c96f5e033773f2b8d35454a607e6ff;hp=0000000000000000000000000000000000000000;hpb=88c786592797a0d51f29d9932a39bc621e8dab88;p=catagits%2FCatalyst-Controller-MovableType.git diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..d991917 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,30 @@ +use strict; +use warnings; +use if $Module::Install::AUTHOR, 'Module::Install::AuthorRequires'; +use inc::Module::Install 0.91; +use Module::Install::AuthorTests; + +name 'Catalyst-Controller-MovableType'; +all_from 'lib/Catalyst/Controller/MovableType.pm'; + +requires 'Moose'; +requires 'namespace::autoclean'; +requires 'Catalyst::Controller::WrapCGI'; + +build_requires 'Catalyst::Runtime' => '5.80015'; +build_requires 'Test::WWW::Mechanize::Catalyst'; +build_requires 'Test::More' => '0.88'; + +author_requires 'Test::Pod::Coverage' => '1.04'; +author_requires 'Test::Pod' => '1.14'; + +author_tests 't/author'; + +resources repository => 'git://somewhere.com/myproject.git'; + +if ($Module::Install::AUTHOR) { + system("pod2text lib/Catalyst/Controller/MovableType.pm > README") + and die $!; +} + +WriteAll();