]> git.imager.perl.org - imager.git/blob - ICO/Makefile.PL
217c39c86c2a9cf831e7291bd3e4120f00758535
[imager.git] / ICO / Makefile.PL
1 #!perl -w
2 use strict;
3 use ExtUtils::MakeMaker;
4
5 my %opts = 
6   (
7    NAME => 'Imager::File::ICO',
8    VERSION_FROM => 'ICO.pm',
9    OBJECT => 'ICO.o msicon.o imicon.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 <tony@imager.perl.org>';
16   $opts{ABSTRACT} = 'Icon Image file support';
17 }
18
19 WriteMakefile(%opts);
20
21