added "kwalitee" test script:
[imager.git] / DynTest / Makefile.PL
CommitLineData
52db4f96
TC
1#!perl -w
2use strict;
92bda632 3use ExtUtils::MakeMaker;
92bda632
TC
4
5my %opts =
6 (
7 NAME => 'Imager::Filter::DynTest',
8 VERSION_FROM => 'DynTest.pm',
9 OBJECT => 'DynTest.o linstretch.o',
10 INC => '-I..'
11 );
12if ($ExtUtils::MakeMaker::VERSION > 6.06) {
13 $opts{AUTHOR} = 'Tony Cook <tony@imager.perl.org>';
14 $opts{ABSTRACT} = 'Demo Imager filter extension';
15}
16
17WriteMakefile(%opts);
18
19