26 lines
759 B
Perl
26 lines
759 B
Perl
use 5.006;
|
|
use strict;
|
|
use warnings;
|
|
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile(
|
|
NAME => 'POE::Component::DirWatch::WithCaller',
|
|
AUTHOR => q{Matthew Connelly <maff@cpan.org>},
|
|
VERSION_FROM => 'lib/POE/Component/DirWatch/WithCaller.pm',
|
|
ABSTRACT_FROM => 'lib/POE/Component/DirWatch/WithCaller.pm',
|
|
LICENSE => 'artistic_2',
|
|
PL_FILES => {},
|
|
MIN_PERL_VERSION => 5.006,
|
|
CONFIGURE_REQUIRES => {
|
|
'ExtUtils::MakeMaker' => 0,
|
|
},
|
|
BUILD_REQUIRES => {
|
|
'Test::More' => 0,
|
|
},
|
|
PREREQ_PM => {
|
|
'POE::Component::DirWatch' => 0.300001,
|
|
},
|
|
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
|
|
clean => { FILES => 'POE-Component-DirWatch-WithCaller-*' },
|
|
);
|