trap param error instead of crashing
[scpubgit/Tak.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use 5.008001;
4 use ExtUtils::MakeMaker;
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'Tak',
9   VERSION_FROM => 'lib/Tak.pm',
10   PREREQ_PM => {
11     'Moo' => '0.009012',
12     'Net::OpenSSH' => '0.52',
13     'Log::Contextual' => '0.004',
14     'JSON::PP' => '2.27104',
15     'Capture::Tiny' => '0.11',
16     'warnings::illegalproto' => 0,
17     'Data::Dumper::Concise' => '2.020',
18     'Eval::WithLexicals' => '1.001000',
19     'IPC::System::Simple' => '1.21',
20     'Config::Settings' => '0.02',
21     'IO::All' => '0.44',
22   },
23   LICENSE => 'perl',
24   EXE_FILES => [ 'bin/tak', 'bin/tak-stdio-node' ],
25   META_MERGE => {
26     'no_index' => { file => [ 'lib/Tak/STDIONode.pm' ] },
27      resources => {
28          license     => 'http://dev.perl.org/licenses/',
29          repository  => 'git://git.shadowcat.co.uk/scpubgit/Tak.git',
30      },
31   }
32 );