fdccdc6a380ab1dbf4a78bacd5beb9f29613a2b9
[scpubgit/App-EzPz.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5
6 my $full_test = $ENV{TEST_APP_EZPZ} ||= do {
7   prompt("Run integration tests? (y/n)", "n") eq "y"
8 };
9
10 if ($full_test) {
11   mkdir('test-setup');
12 }
13
14 WriteMakefile(
15   NAME => 'App-EzPz',
16   VERSION => 0,
17   PREREQ_PM => {
18     Moo => 0,
19     'IO::All' => 0,
20     'Module::Runtime' => 0,
21     'Eval::WithLexicals' => 0,
22     'IPC::System::Simple' => 0,
23     strictures => 0,
24     'File::Which' => 0,
25     'Capture::Tiny' => 0,
26   }
27 );