stop the redefine warnings?
[gitmo/Class-C3.git] / Makefile.PL
CommitLineData
26626902 1use inc::Module::Install 0.65;
56215427 2
3name 'Class-C3';
4all_from 'lib/Class/C3.pm';
5
6# Class::C3 under 5.9.5+ has no deps
7if($] < 5.009_005) {
26626902 8 test_requires 'Test::More' => '0.47';
56215427 9
0c2e9b71 10 feature 'XS Speedups', 'Class::C3::XS' => '0.07';
56215427 11
12 # Would like to disable these if they answer yes above too ...
2d8ea983 13 requires 'Algorithm::C3' => '0.06';
14 requires 'Scalar::Util' => '1.10';
56215427 15}
16
26626902 17# Rebuild README for maintainers
18if(-e 'MANIFEST.SKIP') {
19 system("pod2text lib/Class/C3.pm >README");
20}
21
22auto_provides;
56215427 23auto_install;
24WriteAll;