libt1 support is deprecated
[imager.git] / Flines / Makefile.PL
CommitLineData
52db4f96
TC
1#!perl -w
2use strict;
88666683 3use ExtUtils::MakeMaker;
88666683
TC
4
5my %opts =
6 (
7 NAME => 'Imager::Filter::Flines',
8 VERSION_FROM => 'Flines.pm',
9 OBJECT => 'Flines.o',
10 INC => '-I..'
11 );
c52cbef2
TC
12my $MM_ver = eval $ExtUtils::MakeMaker::VERSION;
13if ($MM_ver > 6.06) {
5b480b14 14 $opts{AUTHOR} = 'Tony Cook <tonyc@cpan.org>';
88666683
TC
15 $opts{ABSTRACT} = 'Flines Imager filter extension';
16}
17
18WriteMakefile(%opts);
19
20