made ::View::TT and ::Mason hard deps. patches welcome if you no likey.
[catagits/Catalyst-View-Email.git] / Makefile.PL
1 use inc::Module::Install 0.91;
2
3 name 'Catalyst-View-Email';
4 all_from 'lib/Catalyst/View/Email.pm';
5 author 'J. Shirley <jshirley@gmail.com>';
6 license 'perl';
7
8 test_requires 'Test::More';
9
10 requires 'MIME::Base64'          => '3.08';
11 requires 'Authen::SASL'          => '2.13';
12 requires 'Catalyst'              => '5.7';
13 requires 'Moose'                 => '0.93';
14 requires 'parent'                => '0.223';
15 requires 'Email::Sender::Simple' => '0.100110';
16 requires 'Email::MIME'           => '1.859';
17 requires 'Email::MIME::Creator'  => '1.455';
18 requires 'Test::More'            => '0.88';
19 ## patches welcome if you don't want these installed.  I'm not maintaining a dist with optional deps.
20 requires 'Catalyst::View::TT'    => '0.31';
21 requires 'Catalyst::View::Mason' => '0.18';
22
23 # Rebuild README for maintainers
24 if ($Module::Install::AUTHOR) {
25     system("pod2text lib/Catalyst/View/Email.pm > README");
26 }
27
28 realclean_files 'README';
29
30 resources 'IRC'     => 'irc://irc.perl.org/#catalyst';
31 resources 'license' => 'http://dev.perl.org/licenses/';
32 resources 'repository' =>
33   'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-Email/';
34 resources 'MailingList' =>
35   'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst';
36
37 auto_provides;
38 auto_install;
39 WriteAll;