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