X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=ab67d85fd22ff0c3a26a8b658f450596e3b571fb;hb=f4d6841847eb4d6292a5f09d9b0572103b2ac0d2;hp=fbce5c19542be3e1dfd4339f9dd8af9393977ca8;hpb=2a0d9919e063bd97141265a54b9ae23863e89d47;p=gitmo%2FMooseX-Daemonize.git diff --git a/Makefile.PL b/Makefile.PL index fbce5c1..ab67d85 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,18 +1,26 @@ # Load the Module::Install bundled in ./inc/ -use inc::Module::Install; +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::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_install; +auto_manifest; + +# r/w: gitmo@git.moose.perl.org:MooseX-Daemonize.git +repository 'git://git.moose.perl.org/MooseX-Daemonize.git'; + WriteAll;