Updated manifest
[catagits/Catalyst-Runtime.git] / Build.PL
CommitLineData
4f6748f1 1use strict;
2use Module::Build;
3
4my $build = Module::Build->new(
fbcc39ad 5 create_makefile_pl => 'passthrough',
4f6748f1 6 license => 'perl',
7 module_name => 'Catalyst',
8 requires => {
316bf0f0 9 'perl' => '5.8.1',
4f6748f1 10 'UNIVERSAL::require' => 0,
4f6748f1 11 'Class::Accessor::Fast' => 0,
12 'Class::Data::Inheritable' => 0,
fbcc39ad 13 'CGI::Cookie' => 0,
4f6748f1 14 'HTML::Entities' => 0,
fbcc39ad 15 'HTTP::Body' => 0,
badafcde 16 'HTTP::Headers' => 1.59,
4f6748f1 17 'HTTP::Request' => 0,
18 'HTTP::Response' => 0,
19 'LWP::UserAgent' => 0,
a268a011 20 'Module::Pluggable::Fast' => 0.16,
fbcc39ad 21 'NEXT' => 0,
df020cf4 22 'Path::Class' => 0.09,
fbcc39ad 23 'Scalar::Util' => 0,
4f6748f1 24 'Template' => 0,
9dad4705 25 'Text::ASCIITable' => 0.17,
fbcc39ad 26 'Test::MockObject' => 0,
4f6748f1 27 'Tree::Simple' => 0,
28 'Tree::Simple::Visitor::FindByPath' => 0,
fbcc39ad 29 'URI' => 1.35,
4f6748f1 30 },
fbcc39ad 31 recommends => { 'Catalyst::Engine::Apache' => 0, },
32 create_makefile_pl => 'passthrough',
33 create_readme => 1,
34 script_files => [ glob('script/*') ],
35 test_files => [
36 glob('t/*.t'), glob('t/*/*.t'),
37 glob('t/*/*/*.t'), glob('t/*/*/*/*.t'),
38 glob('t/*/*/*/*/*.t')
39 ]
4f6748f1 40);
41$build->create_build_script;
42
43print( '*' x 80, "\n" );
44print(
fbcc39ad 45 (qw/andyg chansen draven fordmason mst naughton sri jester/)
46 [ int( rand(8) ) ],
4f6748f1 47 " is the greatest and gabb is ",
48 ( (localtime)[2] > 12 ? "drunk" : "hung over" ),
49 " again!\n"
50);
51print( '*' x 80, "\n" );
52
4f6748f1 53eval "use FCGI";
54print qq/Install "FCGI" for FastCGI support.\n/ if $@;
fbcc39ad 55
56print qq/
57*** IMPORTANT NOTE: ***
58The Apache engines have been moved to a separate package in Catalyst 5.5.
59Please install Catalyst::Engine::Apache if you need Apache support.
60/;