58710805fdb23b5e865e2368fa1154eff33299b6
[app-fonbot-daemon.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 WriteMakefile(
4 NAME => 'App::FonBot::Daemon',
5 VERSION_FROM => 'lib/App/FonBot/Daemon.pm',
6 MIN_PERL_VERSION => "5.14.0",
7 ABSTRACT_FROM => 'lib/App/FonBot/Daemon.pm',
8 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
9 EXE_FILES => ['fonbotd'],
10 LICENSE => 'AGPL_3',
11 PREREQ_PM => {
12 Apache2::Authen::Passphrase => 0,
13 HTTP::Status => 0,
14 IRC::Utils => 0,
15 JSON => 0,
16 Log::Log4perl => 0,
17 POE => 0,
18 POE::Component::IRC => 0,
19 POE::Component::IRC::Plugin::AutoJoin => 0,
20 POE::Component::IRC::Plugin::Connector => 0,
21 POE::Component::IRC::Plugin::NickServID => 0,
22 POE::Component::Server::HTTP => 0,
23 POE::Component::SSLify => 0,
24
25 # Built-in
26 DB_File => 0,
27 MIME::Base64 => 0,
28 Storable => 0,
29 Text::ParseWords => 0,
30 },
31 );
This page took 0.021959 seconds and 3 git commands to generate.