X-Git-Url: http://git.ieval.ro/?p=app-devbot.git;a=blobdiff_plain;f=Makefile.PL;h=8d258dc651fde0606b2fe11fd64cd105c1e1bacf;hp=9804782dc0b5d798d15cb21cde9b9e0b763faa91;hb=HEAD;hpb=bb1da1df94cbd0a34ccca3df33fb3fb1e5f63f4e diff --git a/Makefile.PL b/Makefile.PL index 9804782..8d258dc 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +1,34 @@ -use 5.014002; +use 5.014000; use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'App::Devbot', - VERSION_FROM => 'lib/App/Devbot.pm', - EXE_FILES => [ 'devbot' ], - ABSTRACT_FROM => 'lib/App/Devbot.pm', - AUTHOR => 'Marius Gavrilescu ', - LICENSE => 'perl', - PREREQ_PM => { - 'POE::Component::IRC' => 6.37, #6.37 is the version in Debian squeeze. Hope devbot works with 6.37 :-). - 'IRC::Utils' => 0, - 'File::Slurp' => 0, - }, + NAME => 'App::Devbot', + VERSION_FROM => 'lib/App/Devbot.pm', + EXE_FILES => [ 'devbot' ], + ABSTRACT_FROM => 'lib/App/Devbot.pm', + AUTHOR => 'Marius Gavrilescu ', + MIN_PERL_VERSION => '5.14.0', + LICENSE => 'perl', + SIGN => 1, + PREREQ_PM => { + qw/Getopt::Long 0 + POSIX 0 + + File::Slurp 0 + IRC::Utils 0 + POE 0 + POE::Component::IRC::Plugin::AutoJoin 0 + POE::Component::IRC::Plugin::NickServID 0 + POE::Component::IRC::State 0 + Regexp::Common 0/, + }, + META_MERGE => { + dynamic_config => 0, + recommends => { + qw/POE::Component::SSLify 0/, + }, + resources => { + repository => 'https://git.ieval.ro/?p=app-devbot.git' + } + } );