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