1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4WriteMakefile(
5    'NAME'		=> 'Yada::Yada::Yada',
6    'VERSION_FROM'	=> 'Yada.pm',
7    'PREREQ_PM'		=> {
8                             'Filter::Simple' => 0.76,
9                             'Test::Simple'   => 0.01,
10                           },
11    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
12      (ABSTRACT_FROM => 'Yada.pm', # retrieve abstract from module
13       AUTHOR     => 'Tony Bowden <tony@tmtm.com>') : ()),
14);
15