X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Build.PL;h=af77ef5a3bcd88d096f365bc7475900e3637c625;hb=d62d8073ed0e52016b17860180e3ed23fb4732a0;hp=4cc228263973bdb43b5782f0dbf574b4b691ea86;hpb=673083043c675931281487bcd4afd05b7512a868;p=catagits%2FCatalyst-Runtime.git diff --git a/Build.PL b/Build.PL index 4cc2282..af77ef5 100644 --- a/Build.PL +++ b/Build.PL @@ -2,7 +2,6 @@ use strict; use Module::Build; my $build = Module::Build->new( - create_makefile_pl => 'passthrough', license => 'perl', module_name => 'Catalyst', requires => { @@ -14,7 +13,7 @@ my $build = Module::Build->new( 'File::Temp' => 0.14, 'HTTP::Daemon' => 0, 'HTML::Entities' => 0, - 'HTTP::Headers' => 0, + 'HTTP::Headers' => 1.59, 'HTTP::Request' => 0, 'HTTP::Response' => 0, 'LWP::UserAgent' => 0, @@ -25,12 +24,13 @@ my $build = Module::Build->new( 'Tree::Simple' => 0, 'Tree::Simple::Visitor::FindByPath' => 0, 'URI' => 0, + 'Time::HiRes' => 0, }, - create_makefile_pl => 'passthrough', - script_files => [ glob('script/*') ], - test_files => [ - glob('t/*.t'), glob('t/*/*.t'), glob('t/*/*/*.t'), glob('t/*/*/*/*.t') - ] + create_makefile_pl => 'passthrough', + create_readme => 1, + script_files => [ glob('script/*') ], + test_files => "t/", + recursive_test_files => 1 ); $build->create_build_script;