- fix/simplify META.yml generation - we now generate META.yml at
[imager.git] / DynTest / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my %opts = 
4   (
5    NAME => 'Imager::Filter::DynTest',
6    VERSION_FROM => 'DynTest.pm',
7    OBJECT => 'DynTest.o linstretch.o',
8    INC => '-I..'
9   );
10 if ($ExtUtils::MakeMaker::VERSION > 6.06) {
11   $opts{AUTHOR} = 'Tony Cook <tony@imager.perl.org>';
12   $opts{ABSTRACT} = 'Demo Imager filter extension';
13 }
14
15 WriteMakefile(%opts);
16
17