X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=98d14095c497821cbdea0be1bad79a09fc65bcd8;hb=92b4ca7e92855805646082226e3632d94f178861;hp=fbce5c19542be3e1dfd4339f9dd8af9393977ca8;hpb=2a0d9919e063bd97141265a54b9ae23863e89d47;p=gitmo%2FMooseX-Daemonize.git diff --git a/Makefile.PL b/Makefile.PL index fbce5c1..98d1409 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,12 +1,13 @@ # 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; @@ -14,5 +15,6 @@ requires 'MooseX::Types::Path::Class' => 0; no_index 'directory' => 'examples'; -auto_install; +auto_manifest; +auto_repository; WriteAll;