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