From: Matt S Trout Date: Sat, 14 Jul 2012 21:11:09 +0000 (+0000) Subject: initial Makefile.PL X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=scpubgit%2FApp-EzPz.git;a=commitdiff_plain;h=d5b7f727dd4b86f46096674f94c7d634b17b599c initial Makefile.PL --- diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..8860481 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,18 @@ +use strict; +use warnings FATAL => 'all'; +use 5.008001; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'App-EzPz', + VERSION => 0, + PREREQ_PM => { + Moo => 0, + 'IO::All' => 0, + 'Module::Runtime' => 0, + 'Eval::WithLexicals' => 0, + 'IPC::System::Simple' => 0, + strictures => 0, + 'File::Which' => 0 + } +);