Merge branch 'master' of ssh://git.shadowcat.co.uk/Catalyst-Controller-MovableType
[catagits/Catalyst-Controller-MovableType.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..d991917
--- /dev/null
@@ -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();