X-Git-Url: http://git.ieval.ro/?a=blobdiff_plain;f=Makefile.PL;h=78517c1f8e0af4933490221839eb91c375c9e152;hb=a46e82afc3b15b6feda89a1649c2265c8bd8061c;hp=58710805fdb23b5e865e2368fa1154eff33299b6;hpb=8dc70d07c47947a1b1a9de7d377aee1003aca0ae;p=app-fonbot-daemon.git diff --git a/Makefile.PL b/Makefile.PL index 5871080..78517c1 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,38 @@ 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'], - 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, + MIN_PERL_VERSION => "5.14.0", + LICENSE => 'open_source', # AGPL_3 to be exact, but that requires META version 2 + 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 => 'https://git.ieval.ro/?p=app-fonbot-daemon.git', + IRC => 'irc://irc.oftc.net/#fonbot', + }, + } );