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