Bump version and update Changes
[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 ABSTRACT_FROM => 'lib/App/FonBot/Daemon.pm',
7 AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>',
8 EXE_FILES => ['fonbotd'],
9 MIN_PERL_VERSION => "5.14.0",
10 LICENSE => 'open_source', # AGPL_3 to be exact, but that requires META version 2
11 SIGN => 1,
12 PREREQ_PM => {
13 qw/Apache2::Authen::Passphrase 0
14 Email::Sender::Simple 0
15 Email::Simple 0
16 Email::MIME 0
17 File::Slurp 0
18 HTTP::Status 0
19 IRC::Utils 0
20 JSON 0
21 Linux::Inotify2 0
22 Log::Log4perl 0
23 POE 0
24 POE::Component::IRC 0
25 POE::Component::IRC::Plugin::AutoJoin 0
26 POE::Component::IRC::Plugin::Connector 0
27 POE::Component::IRC::Plugin::NickServID 0
28 POE::Component::Server::HTTP 0
29 POE::Component::SSLify 0
30
31 DB_File 0
32 File::Glob 0
33 MIME::Base64 0
34 Storable 0
35 Text::ParseWords 0/,
36 },
37 META_ADD => {
38 dynamic_config => 0,
39 resources => {
40 repository => 'https://git.ieval.ro/?p=app-fonbot-daemon.git',
41 IRC => 'irc://irc.oftc.net/#fonbot',
42 },
43 }
44 );
This page took 0.021368 seconds and 4 git commands to generate.