]> git.imager.perl.org - imager.git/blob - SGI/Makefile.PL
hopefully avoid coverity complaining about a float vs int comparison
[imager.git] / SGI / Makefile.PL
1 #!perl -w
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 my %opts = 
6   (
7    NAME => 'Imager::File::SGI',
8    VERSION_FROM => 'SGI.pm',
9    OBJECT => 'SGI.o imsgi.o',
10    INC => '-I..',
11    clean => { FILES => 'testout' },
12   );
13 my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
14 if ($MM_ver > 6.06) {
15   $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
16   $opts{ABSTRACT} = 'SGI Image file support';
17 }
18
19 WriteMakefile(%opts);
20
21