####################################
# Makefile.PL for Foo::Bar
####################################
use ExtUtils::MakeMaker;
WriteMakefile(
  'NAME' => 'Foo::Bar',
  'VERSION_FROM' => 
         'lib/Foo/Bar.pm',
  'PREREQ_PM' => {},
  (
    $] >= 5.005
    ? (
      ABSTRACT_FROM => 
         'lib/Foo/Bar.pm',
      AUTHOR => 
  'Ed Jones <ed@jones.com>'
      ) : ()
  ),
);
