0.03, C3 reqs and loading mro.pm
[gitmo/MRO-Compat.git] / Makefile.PL
CommitLineData
cbb1ce9a 1use inc::Module::Install 0.65;
4c4e4170 2
cfd77a25 3name 'MRO-Compat';
4all_from 'lib/MRO/Compat.pm';
4c4e4170 5
cbb1ce9a 6test_requires 'Test::More' => '0.47';
4c4e4170 7
e9b18837 8if($] < 5.009_005) {
cbb1ce9a 9 feature 'XS Speedups',
10 'Class::C3::XS' => '0.07';
11 requires 'Class::C3' => '0.19';
e9b18837 12}
13
cbb1ce9a 14# Rebuild README for maintainers
15if(-e 'MANIFEST.SKIP') {
16 system("pod2text lib/MRO/Compat.pm >README");
17}
18
19auto_provides;
4c4e4170 20auto_install;
21WriteAll;