proprosed fix for RT#28661
[gitmo/MRO-Compat.git] / Makefile.PL
CommitLineData
cbb1ce9a 1use inc::Module::Install 0.65;
4c4e4170 2
81350029 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) {
81350029 9 feature 'XS Speedups', 'Class::C3::XS' => '0.08';
10 requires 'Class::C3' => '0.19';
e9b18837 11}
12
cbb1ce9a 13# Rebuild README for maintainers
81350029 14system("pod2text lib/MRO/Compat.pm >README") if -e 'MANIFEST.SKIP';
cbb1ce9a 15
16auto_provides;
4c4e4170 17auto_install;
18WriteAll;