Fix compilation under blead, and require at least 5.006
[p5sagit/Devel-Size.git] / Makefile.PL
1
2 use strict;
3 # require at least 5.006, it doesn't even compile under 5.005
4 require 5.006;
5
6 # Load the Module::Install bundled in ./inc/
7 use inc::Module::Install;
8
9 name            'Devel-Size';
10
11 # Get most of the details from the primary module
12 all_from        'lib/Devel/Size.pm';
13
14 requires        'DynaLoader'    => 0;
15 requires        'perl'          => 5.006;
16
17 recommends      'Devel::Size::Report'   => 0.11;
18
19 build_requires  'Test::More'    => 0.42;
20
21 license         'perl';         # from 5.8.8
22
23 # It seems not to be possible to specifiy two authors here :/
24 # Nor does a "maintainer" property exist
25 author          'Tels <nospam-abuse@bloodgate.com>';
26
27 # Do not index these
28 no_index        directory       => 'examples';
29
30 # Generate the Makefile
31 WriteAll;