oops give it a name
[gitmo/MRO-Compat.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name           'mro';
4 all_from       'lib/mro.pm';
5
6 build_requires 'Test::More'    => '0.47';
7
8 if($] > 5.009_004) {
9     warn "*** There is no good reason to install this module on Perl version 5.9.5 or higher ***";
10     # XXX can I prevent M::I from installing mro.pm in this case?
11 }
12
13 auto_install;
14 WriteAll;