]> git.imager.perl.org - imager.git/blob - CountColor/Makefile.PL
[rt #87650] change setpixel()'s return value
[imager.git] / CountColor / Makefile.PL
1 #!perl -w
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 my %opts = 
6   (
7    NAME => 'Imager::CountColor',
8    VERSION_FROM => 'CountColor.pm',
9    OBJECT => 'CountColor.o',
10    INC => '-I..',
11   );
12 my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
13 if ($MM_ver > 6.06) {
14   $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
15   $opts{ABSTRACT} = 'Color Count an Imager image';
16 }
17
18 WriteMakefile(%opts);
19
20