Imager::Graph 0.03
[imager-graph.git] / Makefile.PL
CommitLineData
35574351
TC
1# Imager::Graph
2use ExtUtils::MakeMaker;
3my %opts;
4if ($] ge '5.005') {
5 $opts{AUTHOR} = 'Tony Cook <tony@develop-help.com>';
6 $opts{ABSTRACT} = 'Draws good looking pie graphs';
7}
8
9WriteMakefile(
10 %opts,
11 'NAME' => 'Imager::Graph',
12 'VERSION_FROM' => 'Graph.pm', # finds $VERSION
13 PREREQ_PM => { Imager=>'0.38' },
14 clean => { FILES=>'testout' },
15);