From 03a20c0608c19a991d5e3552bfb16bef35bd29a5 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 17 Aug 2014 00:43:11 +0300 Subject: [PATCH] Enable SIGN, add repository --- Makefile.PL | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 4645acd..3528150 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,3 +1,4 @@ +use 5.014000; use ExtUtils::MakeMaker; WriteMakefile( @@ -5,17 +6,21 @@ WriteMakefile( VERSION_FROM => 'lib/POE/Component/IRC/Plugin/Infobot.pm', ABSTRACT_FROM => 'lib/POE/Component/IRC/Plugin/Infobot.pm', AUTHOR => 'Marius Gavrilescu ', - LICENSE => 'perl', MIN_PERL_VERSION => '5.14.0', - META_ADD => { - dynamic_config => 0, - }, + LICENSE => 'perl', + SIGN => 1, PREREQ_PM => { - POE::Component::IRC::Plugin => 0, - IRC::Utils => 0.12, - DB_File => 0. + qw/POE::Component::IRC::Plugin 0 + IRC::Utils 0.12 + DB_File 0/, }, BUILD_REQUIRES => { - Test::MockObject => 0, - } + qw/Test::MockObject 0/, + }, + META_MERGE => { + dynamic_config => 0, + resources => { + repository => 'http://git.ieval.ro/?p=poe-component-irc-plugin-infobot.git', + } + }, ); -- 2.30.2