Adding Cogwheel, a Moose wrapped Sprocket
[gitmo/MooseX-Daemonize.git] / Makefile.PL
1 use inc::Module::Install;
2 WriteMakefile(
3     NAME          => 'MooseX::Daemonize',
4     AUTHOR        => 'Chris Prather <perigrin@cpan.org>',
5     VERSION_FROM  => 'lib/MooseX/Daemonize.pm',
6     ABSTRACT_FROM => 'lib/MooseX/Daemonize.pm',
7     PL_FILES      => {},
8     PREREQ_PM     => {
9         'Test::More'   => 0,
10         'Proc::Daemon' => 0,
11         'Carp'         => 0,
12         'File::Flock'  => 0,
13         'File::Slurp'  => 0,
14         'Moose'        => 0.20,
15     },
16     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17     clean => { FILES    => 'MooseX-Daemonize-*' },
18 );