Initial import of Catalyst::Engine::Stomp
[catagits/Catalyst-Engine-STOMP.git] / Makefile.PL
CommitLineData
0a663589 1use 5.008008;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6 NAME => 'Catalyst::Engine::Stomp',
7 VERSION_FROM => 'lib/Catalyst/Engine/Stomp.pm', # finds $VERSION
8 PREREQ_PM => {
9 Catalyst::Engine::Embeddable => 0.0.1,
10 Moose => 0,
11 Net::Stomp => 0.34,
12 YAML::XS => 0.32,
13 }, # e.g., Module::Name => 1.1
14 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
15 (ABSTRACT_FROM => 'lib/Catalyst/Engine/Stomp.pm', # retrieve abstract from module
16 AUTHOR => 'Chris Andrews <chris@nodnol.org>') : ()),
17 LIBS => [''], # e.g., '-lm'
18 DEFINE => '', # e.g., '-DHAVE_SOMETHING'
19 INC => '-I.', # e.g., '-I. -I/usr/include/other'
20);