From: Karen Etheridge Date: Tue, 31 Aug 2010 17:19:11 +0000 (-0700) Subject: add M:I dependency to make it more clear to n00bs what modules need to be installed... X-Git-Tag: 0.12~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FMoose-Autobox.git;a=commitdiff_plain;h=4e008ee1aacc59932f6d7e8643eab442ba3b0979 add M:I dependency to make it more clear to n00bs what modules need to be installed; add repository specification --- diff --git a/Makefile.PL b/Makefile.PL index 9a35aa8..f536ced 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,6 +1,7 @@ use strict; use warnings; use inc::Module::Install 0.96; +use Module::Install::AutoManifest; use Module::Install::ExtraTests; name('Moose-Autobox'); @@ -13,6 +14,8 @@ requires 'Perl6::Junction' => '1.40000'; test_requires 'Test::More' => '0.89'; test_requires 'Test::Exception' => '0.21'; +repository 'git://git.moose.perl.org/Moose-Autobox.git'; + auto_manifest; tests_recursive; extra_tests;