projects
/
imager.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
libt1 support is deprecated
[imager.git]
/
Flines
/
Makefile.PL
1
#!perl -w
2
use strict;
3
use ExtUtils::MakeMaker;
4
5
my %opts =
6
(
7
NAME => 'Imager::Filter::Flines',
8
VERSION_FROM => 'Flines.pm',
9
OBJECT => 'Flines.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} = 'Flines Imager filter extension';
16
}
17
18
WriteMakefile(%opts);
19
20