X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=f0756cda07229b5b0638e489e2d9517f086a7b19;hb=dfa11004a2d5ffded0323bb85317ed444a90d2ac;hp=0a7006b0a5d2c8409e0368c97d8ad65896e63cbb;hpb=6ae2c8a1ea8e51322d8a623a1b621fded29f254a;p=gitmo%2FMoose.git diff --git a/Makefile.PL b/Makefile.PL index 0a7006b..f0756cd 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,26 +1,28 @@ use strict; use warnings; -use Config; -use ExtUtils::MakeMaker; +BEGIN { + eval { require ExtUtils::MakeMaker::Dist::Zilla::Develop }; + if ($@) { + warn + "You need to install ExtUtils::MakeMaker::Dist::Zilla::Develop to run this Makefile.PL\n"; + exit 1; + } + + eval { require Test::Inline }; + if ($@) { + warn "You need to install Test::Inline to run this Makefile.PL\n"; + exit 1; + } + + ExtUtils::MakeMaker::Dist::Zilla::Develop->import(); +} use lib 'inc'; use MMHelper; use MyInline; -warn <<'EOF'; - - ********************************* WARNING ********************************** - - This module uses Dist::Zilla for development. This Makefile.PL will let you - run the tests, but you are encouraged to install Dist::Zilla and the needed - plugins if you intend on doing any serious hacking. - - **************************************************************************** - -EOF - system( $^X, 'author/extract-inline-tests', '--quiet' ); eval MMHelper::my_package_subs();