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