1use 5.008001;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5WriteMakefile(
6    NAME              => 'Image::Magick::Iterator',
7    VERSION_FROM      => 'lib/Image/Magick/Iterator.pm', # finds $VERSION
8    PREREQ_PM         => {
9                          Image::Magick => 5.56,
10                          Image::PBMlib => 1.05,
11                         }, # e.g., Module::Name => 1.1
12    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
13      (ABSTRACT_FROM  => 'lib/Image/Magick/Iterator.pm', # retrieve abstract from module
14       AUTHOR         => 'Allen Day <allenday@ucla.edu>') : ()),
15);
16