]>
Commit | Line | Data |
---|---|---|
49843e25 | 1 | use 5.014000; |
bb1da1df MG |
2 | use ExtUtils::MakeMaker; |
3 | ||
4 | WriteMakefile( | |
49843e25 MG |
5 | NAME => 'App::Devbot', |
6 | VERSION_FROM => 'lib/App/Devbot.pm', | |
7 | EXE_FILES => [ 'devbot' ], | |
8 | ABSTRACT_FROM => 'lib/App/Devbot.pm', | |
9 | AUTHOR => 'Marius Gavrilescu <marius@ieval.ro>', | |
10 | MIN_PERL_VERSION => '5.14.0', | |
11 | LICENSE => 'perl', | |
12 | SIGN => 1, | |
13 | PREREQ_PM => { | |
14 | qw/Getopt::Long 0 | |
15 | POSIX 0 | |
16 | ||
17 | File::Slurp 0 | |
18 | IRC::Utils 0 | |
19 | POE 0 | |
20 | POE::Component::IRC::Plugin::AutoJoin 0 | |
21 | POE::Component::IRC::Plugin::NickServID 0 | |
445eb545 PG |
22 | POE::Component::IRC::State 0 |
23 | Regexp::Common 0/, | |
49843e25 MG |
24 | }, |
25 | META_MERGE => { | |
26 | dynamic_config => 0, | |
16fa5ceb MG |
27 | recommends => { |
28 | qw/POE::Component::SSLify 0/, | |
29 | }, | |
49843e25 MG |
30 | resources => { |
31 | repository => 'https://git.ieval.ro/?p=app-devbot.git' | |
32 | } | |
33 | } | |
bb1da1df | 34 | ); |