Fix resources in Makefile.PL
[app-fonbot-daemon.git] / Makefile.PL
CommitLineData
8dc70d07
MG
1use ExtUtils::MakeMaker;
2
3WriteMakefile(
7be318a6
MG
4 NAME => 'App::FonBot::Daemon',
5 VERSION_FROM => 'lib/App/FonBot/Daemon.pm',
8dc70d07
MG
6 ABSTRACT_FROM => 'lib/App/FonBot/Daemon.pm',
7 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
8 EXE_FILES => ['fonbotd'],
7be318a6 9 MIN_PERL_VERSION => "5.14.0",
202f0eb2 10 LICENSE => 'open_source', # AGPL_3 to be exact, but that requires META version 2
7be318a6
MG
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/Apache2::Authen::Passphrase 0
14 HTTP::Status 0
15 IRC::Utils 0
16 JSON 0
17 Log::Log4perl 0
18 POE 0
19 POE::Component::IRC 0
20 POE::Component::IRC::Plugin::AutoJoin 0
21 POE::Component::IRC::Plugin::Connector 0
22 POE::Component::IRC::Plugin::NickServID 0
23 POE::Component::Server::HTTP 0
24 POE::Component::SSLify 0
8dc70d07 25
7be318a6
MG
26 DB_File 0
27 MIME::Base64 0
28 Storable 0
29 Text::ParseWords 0/,
8dc70d07 30 },
7be318a6
MG
31 META_ADD => {
32 dynamic_config => 0,
33 resources => {
a46e82af
MG
34 repository => 'https://git.ieval.ro/?p=app-fonbot-daemon.git',
35 IRC => 'irc://irc.oftc.net/#fonbot',
7be318a6
MG
36 },
37 }
8dc70d07 38);
This page took 0.011152 seconds and 4 git commands to generate.