X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=5089f55c32a2e8653763ca57c16d55c99f539c33;hb=3c5fd9cb51be006ce4d34248cd43367339ad646f;hp=51d31fd328d6b81a957ec0c78db136d5abdba5e7;hpb=87427fdbbc45da39f7a19c58ff1aaf442dce68a2;p=dbsrgits%2FDBIx-Class-Tree.git diff --git a/Makefile.PL b/Makefile.PL index 51d31fd..5089f55 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,31 +1,20 @@ -# Note: this file was auto-generated by Module::Build::Compat version 0.03 - - unless (eval "use Module::Build::Compat 0.02; 1" ) { - print "This module requires Module::Build to install itself.\n"; - - require ExtUtils::MakeMaker; - my $yn = ExtUtils::MakeMaker::prompt - (' Install Module::Build now from CPAN?', 'y'); - - unless ($yn =~ /^y/i) { - die " *** Cannot install without Module::Build. Exiting ...\n"; - } - - require Cwd; - require File::Spec; - require CPAN; - - # Save this 'cause CPAN will chdir all over the place. - my $cwd = Cwd::cwd(); - my $makefile = File::Spec->rel2abs($0); - - CPAN::Shell->install('Module::Build::Compat') - or die " *** Cannot install without Module::Build. Exiting ...\n"; - - chdir $cwd or die "Cannot chdir() back to $cwd: $!"; - } - eval "use Module::Build::Compat 0.02; 1" or die $@; - use lib '_build/lib'; - Module::Build::Compat->run_build_pl(args => \@ARGV); - require Module::Build; - Module::Build::Compat->write_makefile(build_class => 'Module::Build'); +use inc::Module::Install; + +BEGIN { + if ($Module::Install::AUTHOR) { + require Module::Install::ReadmeFromPod; + } +} + +name 'DBIx-Class-Tree'; +perl_version '5.008001'; +all_from 'lib/DBIx/Class/Tree.pm'; +readme_from 'lib/DBIx/Class/Tree.pm'; + +resources 'repository' => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits/DBIx-Class-Tree.git'; + +requires 'DBIx::Class' => '0.08100'; +test_requires 'Test::Exception'; + +WriteAll; +