removed mispellings, removed local dist.ini
[catagits/Catalyst-View-Email.git] / Makefile.PL
CommitLineData
a29d6a45 1use inc::Module::Install 0.91;
2
3name 'Catalyst-View-Email';
4all_from 'lib/Catalyst/View/Email.pm';
5author 'J. Shirley <jshirley@gmail.com>';
6license 'perl';
7
8test_requires 'Test::More';
9
10requires 'MIME::Base64' => '3.08';
11requires 'Authen::SASL' => '2.13';
12requires 'Catalyst' => '5.7';
13requires 'Moose' => '0.93';
14requires 'parent' => '0.223';
15requires 'Email::Sender::Simple' => '0.100110';
16requires 'Email::MIME' => '1.859';
17requires 'Email::MIME::Creator' => '1.455';
18
19feature 'Template Toolkit support',
20 -default => 0,
21 'Catalyst::View::TT' => '0.31';
22
23feature 'HTML::Mason support',
24 -default => 0,
25 'Catalyst::View::Mason' => '0.18';
26
27# Rebuild README for maintainers
28if ($Module::Install::AUTHOR) {
29 system("pod2text lib/Catalyst/View/Email.pm > README");
30}
31
32realclean_files 'README';
33
34resources 'IRC' => 'irc://irc.perl.org/#catalyst';
35resources 'license' => 'http://dev.perl.org/licenses/';
36resources 'repository' => 'http://dev.catalyst.perl.org/repos/Catalyst/Catalyst-View-Email';
37resources 'MailingList' => 'http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst';
38
39auto_provides;
40auto_install;
41WriteAll;