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'		=> 'DateTime::Calendar::Hebrew',
6    'VERSION_FROM'	=> 'Hebrew.pm', # finds $VERSION
7    'PREREQ_PM'		=> {
8		'DateTime::TimeZone::Floating' => '0',
9		'DateTime'	=> '0',
10		'DateTime::Event::Sunrise'	=> '0',
11		'DateTime::Duration'	=> '0',
12	},
13    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
14      (ABSTRACT_FROM => 'Hebrew.pm', # retrieve abstract from module
15       AUTHOR     => 'Steven J. Weinberger <perl@psycomp.com>') : ()),
16);
17