From: Matt S Trout Date: Wed, 5 Sep 2012 13:55:40 +0000 (+0000) Subject: initial Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=66258bfac4758ccfba9df4f4b383530bb3c99bcc;p=scpubgit%2FApp-SCS.git initial Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..f719b51 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,21 @@ +use strict; +use warnings FATAL => 'all'; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'App-SCS', + VERSION => 0, + PREREQ_PM => { + 'Web::Simple' => 0, + Moo => 0, + 'Module::Runtime' => 0, + 'HTML::Zoom' => 0, + 'IO::All' => 0, + 'Text::MultiMarkdown' => 0, + 'Data::Pond' => 0, + 'Safe::Isa' => 0, + 'Syntax::Keyword::Gather' => 0, + 'Try::Tiny' => 0, + JSON => 0, + } +);