From 7be318a6bf7a8f960c4192f52e7e5c8763d002ee Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Sun, 31 Aug 2014 00:40:26 +0300 Subject: [PATCH] Reformat Makefile.PL, add SIGN and repository --- Makefile.PL | 48 +++++++++++++++++++++++++++--------------------- 1 file changed, 27 insertions(+), 21 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index 5871080..476b826 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,37 @@ use ExtUtils::MakeMaker; WriteMakefile( - NAME => 'App::FonBot::Daemon', - VERSION_FROM => 'lib/App/FonBot/Daemon.pm', - MIN_PERL_VERSION => "5.14.0", + NAME => 'App::FonBot::Daemon', + VERSION_FROM => 'lib/App/FonBot/Daemon.pm', ABSTRACT_FROM => 'lib/App/FonBot/Daemon.pm', AUTHOR => 'Marius Gavrilescu ', EXE_FILES => ['fonbotd'], + MIN_PERL_VERSION => "5.14.0", LICENSE => 'AGPL_3', - PREREQ_PM => { - Apache2::Authen::Passphrase => 0, - HTTP::Status => 0, - IRC::Utils => 0, - JSON => 0, - Log::Log4perl => 0, - POE => 0, - POE::Component::IRC => 0, - POE::Component::IRC::Plugin::AutoJoin => 0, - POE::Component::IRC::Plugin::Connector => 0, - POE::Component::IRC::Plugin::NickServID => 0, - POE::Component::Server::HTTP => 0, - POE::Component::SSLify => 0, + SIGN => 1, + PREREQ_PM => { + qw/Apache2::Authen::Passphrase 0 + HTTP::Status 0 + IRC::Utils 0 + JSON 0 + Log::Log4perl 0 + POE 0 + POE::Component::IRC 0 + POE::Component::IRC::Plugin::AutoJoin 0 + POE::Component::IRC::Plugin::Connector 0 + POE::Component::IRC::Plugin::NickServID 0 + POE::Component::Server::HTTP 0 + POE::Component::SSLify 0 - # Built-in - DB_File => 0, - MIME::Base64 => 0, - Storable => 0, - Text::ParseWords => 0, + DB_File 0 + MIME::Base64 0 + Storable 0 + Text::ParseWords 0/, }, + META_ADD => { + dynamic_config => 0, + resources => { + repository => 'http://git.ieval.ro/?p=app-fonbot-daemon.git', + }, + } ); -- 2.30.2