From affd1512d60fd3f85fee831b2201278827541dcc Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 30 Mar 2014 00:51:46 +0200 Subject: [PATCH] Update Makefile.PL --- Makefile.PL | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index d7c296e..8321128 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,26 @@ +use 5.014000; use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'POE::Component::IRC::Plugin::Seen', - VERSION_FROM => 'lib/POE/Component/IRC/Plugin/Seen.pm', - ABSTRACT_FROM => 'lib/POE/Component/IRC/Plugin/Seen.pm', - AUTHOR => 'Marius Gavrilescu ', - LICENSE => 'perl', - MIN_PERL_VERSION => 5.014000, - PREREQ_PM => { - DB_File => 0, - POE::Component::IRC::Plugin => 0, - IRC::Utils => 0.05, - }, - BUILD_REQUIRES => { - Test::MockObject => 0, - } + NAME => 'POE::Component::IRC::Plugin::Seen', + VERSION_FROM => 'lib/POE/Component/IRC/Plugin/Seen.pm', + ABSTRACT_FROM => 'lib/POE/Component/IRC/Plugin/Seen.pm', + AUTHOR => 'Marius Gavrilescu ', + MIN_PERL_VERSION => 5.014000, + LICENSE => 'perl', + SIGN => 1, + BUILD_REQUIRES => { + qw/Test::MockObject 0/, + }, + PREREQ_PM => { + qw/DB_File 0 + POE::Component::IRC::Plugin 0 + IRC::Utils 0.05/, + }, + META_MERGE => { + dynamic_config => 0, + resources => { + repository => 'https://git.ieval.ro/?p=poe-component-irc-plugin-seen.git', + } + } ); -- 2.30.2