Commit | Line | Data |
---|---|---|
35574351 TC |
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 | ); |