]> git.imager.perl.org - imager.git/blame - SGI/Makefile.PL
check Affix::Infix2Postfix is available before testing transform()
[imager.git] / SGI / Makefile.PL
CommitLineData
d5477d3d
TC
1#!perl -w
2use strict;
3use ExtUtils::MakeMaker;
4
5my %opts =
6 (
7 NAME => 'Imager::File::SGI',
8 VERSION_FROM => 'SGI.pm',
9 OBJECT => 'SGI.o imsgi.o',
30160513
TC
10 INC => '-I..',
11 clean => { FILES => 'testout' },
d5477d3d
TC
12 );
13my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
14if ($MM_ver > 6.06) {
15 $opts{AUTHOR} = 'Tony Cook <tony@imager.perl.org>';
16 $opts{ABSTRACT} = 'SGI Image file support';
17}
18
19WriteMakefile(%opts);
20
21