updated: gabb is hung over in the morning.
[catagits/Catalyst-Runtime.git] / Makefile.PL
CommitLineData
fc7ec1d9 1use ExtUtils::MakeMaker;
2
3WriteMakefile(
4 NAME => 'Catalyst',
5 VERSION_FROM => 'lib/Catalyst.pm',
91864987 6 EXE_FILES => ['script/catalyst.pl'],
fc7ec1d9 7 PREREQ_PM => {
87e67021 8 UNIVERSAL::require => 0,
9 CGI::Simple => 0,
10 Class::Accessor::Fast => 0,
11 Class::Data::Inheritable => 0,
6f4e1683 12 HTTP::Daemon => 0,
87e67021 13 HTML::Entities => 0,
14 HTTP::Headers => 0,
6f4e1683 15 HTTP::Request => 0,
16 HTTP::Response => 0,
17 LWP::UserAgent => 0,
87e67021 18 Module::Pluggable::Fast => 0,
61cfdd57 19 Template => 0,
0f7ecc53 20 Text::ASCIITable => 0,
87e67021 21 Tree::Simple => 0,
22 Tree::Simple::Visitor::FindByPath => 0,
6f4e1683 23 URI => 0,
78f22c3f 24 },
25 test => {
26 TESTS => join ' ',
7e1212a9 27 (
28 glob('t/*.t'), glob('t/*/*.t'),
29 glob('t/*/*/*.t'), glob('t/*/*/*/*.t')
30 )
fc7ec1d9 31 }
32);
33
1ad2fe05 34print( '*' x 80, "\n" );
a05e9a32 35print( (qw/chansen draven fordmason naughton sri the_jester/)[ int( rand(6) ) ],
c5310023 36 " is the greatest and gabb is ",
37 ((localtime)[2] > 12 ? "drunk" : "hung over"), " again!\n" );
1ad2fe05 38print( '*' x 80, "\n" );
9ada3267 39
40eval "use mod_perl; use Apache::Request";
41print qq/Install "mod_perl" and "Apache::Request" for Apache support.\n/ if $@;
42
43eval "use FCGI";
44print qq/Install "FCGI" for FastCGI support.\n/ if $@;