Initial release
[app-devbot.git] / Makefile.PL
1 use 5.014002;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
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 LICENSE => 'perl',
11 PREREQ_PM => {
12 'POE::Component::IRC' => 6.37, #6.37 is the version in Debian squeeze. Hope devbot works with 6.37 :-).
13 'IRC::Utils' => 0,
14 'File::Slurp' => 0,
15 },
16 );
This page took 0.022791 seconds and 5 git commands to generate.