1use ExtUtils::MakeMaker;
2  # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3  # the contents of the Makefile that is written.
4
5WriteMakefile(
6    'NAME'		=> 'Geo::Postcodes::NO',
7    'VERSION_FROM'	=> 'lib/Geo/Postcodes/NO.pm', # finds $VERSION
8    'PREREQ_PM'		=> { Geo::Postcodes => 0.31 },
9    'PL_FILES'          => {}, # Property of Build.pm
10    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
11      (ABSTRACT_FROM => 'lib/Geo/Postcodes/NO.pm', # retrieve abstract from module
12       AUTHOR     => 'Arne Sommer <perl@bbop.org>') : ()),
13);
14