X-Git-Url: http://git.ieval.ro/?p=app-devbot.git;a=blobdiff_plain;f=Makefile.PL;h=a83aa865f7d9b078129faec77ce35a590ef4f628;hp=9804782dc0b5d798d15cb21cde9b9e0b763faa91;hb=49843e25f4f9e0d01bedef23c3997857e60fada3;hpb=bb1da1df94cbd0a34ccca3df33fb3fb1e5f63f4e diff --git a/Makefile.PL b/Makefile.PL index 9804782..a83aa86 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,16 +1,30 @@ -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/, + }, + META_MERGE => { + dynamic_config => 0, + resources => { + repository => 'https://git.ieval.ro/?p=app-devbot.git' + } + } );