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