Change LICENSE in META to open_source
[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 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
25
26 DB_File 0
27 MIME::Base64 0
28 Storable 0
29 Text::ParseWords 0/,
30 },
31 META_ADD => {
32 dynamic_config => 0,
33 resources => {
34 repository => 'http://git.ieval.ro/?p=app-fonbot-daemon.git',
35 },
36 }
37 );
This page took 0.021821 seconds and 4 git commands to generate.