e937bd2b196ccf46d06fe7b7d81d3e0d22600828
[catagits/Test-EOL.git] / Makefile.PL
1 use inc::Module::Install 0.78;
2
3 name     'Test-EOL';
4 license  'perl';
5 author   'Tomas Doran <bobtfish@bobtfish.net>';
6
7 all_from 'lib/Test/EOL.pm';
8 requires 'Test::More';
9 requires 'Test::Builder';
10 requires 'File::Spec';
11 requires 'FindBin';
12 requires 'File::Find';
13
14 resources repository => 'git://github.com/bobtfish/perl-test-eol.git';
15
16 if ($Module::Install::AUTHOR) {
17     system("pod2text lib/Test/EOL.pm > README") and die;
18 }
19
20 WriteAll;
21