use strict; use warnings FATAL => 'all'; use 5.008001; use ExtUtils::MakeMaker; my $full_test = $ENV{TEST_APP_EZPZ} ||= do { prompt("Run integration tests? (y/n)", "n") eq "y" }; if ($full_test) { mkdir('test-setup'); } WriteMakefile( NAME => 'App-EzPz', VERSION => 0, PREREQ_PM => { Moo => 0.91012, 'IO::All' => 0.44, 'Module::Runtime' => 0.013, 'Eval::WithLexicals' => 1.002, 'IPC::System::Simple' => 1.21, strictures => 1.004001, 'File::Which' => 1.09, 'Capture::Tiny' => 0.18, 'Web::Simple' => 0.18, 'HTML::Zoom' => 0.009006, } );