X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ab67d85fd22ff0c3a26a8b658f450596e3b571fb;hb=45b2dbae89e36c43903a81c0fb16555f06a41e9a;hp=bdfdcb341f59b341773a9529bb65743fd382c779;hpb=a49526793f4ad674abfd7670f4c6a0de9b6df265;p=gitmo%2FMooseX-Daemonize.git diff --git a/Makefile.PL b/Makefile.PL index bdfdcb3..ab67d85 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,26 @@ -use inc::Module::Install; -WriteMakefile( - NAME => 'MooseX::Daemonize', - AUTHOR => 'Chris Prather ', - VERSION_FROM => 'lib/MooseX/Daemonize.pm', - ABSTRACT_FROM => 'lib/MooseX/Daemonize.pm', - PL_FILES => {}, - PREREQ_PM => { - 'Test::More' => 0, - 'Proc::Daemon' => 0, - 'Carp' => 0, - 'File::Flock' => 0, - 'File::Slurp' => 0, - 'Moose' => 0.20, - }, - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, - clean => { FILES => 'MooseX-Daemonize-*' }, -); +# Load the Module::Install bundled in ./inc/ +use inc::Module::Install 0.75; + +# Define metadata +name 'MooseX-Daemonize'; +all_from 'lib/MooseX/Daemonize.pm'; + +# Specific dependencies +build_requires 'Test::More' => 0; +build_requires 'Test::Moose' => 0; + +requires 'Moose' => 0.33; +requires 'MooseX::Getopt' => 0.07; +requires 'MooseX::Types::Path::Class' => 0; +requires 'File::Path' => 2.08; +test_requires 'Test::More' => 0.88; +test_requires 'Test::Fatal' => 0; + +no_index 'directory' => 'examples'; + +auto_manifest; + +# r/w: gitmo@git.moose.perl.org:MooseX-Daemonize.git +repository 'git://git.moose.perl.org/MooseX-Daemonize.git'; + +WriteAll;