1
2use ExtUtils::MakeMaker;
3
4WriteMakefile(
5    NAME              => 'GD::Arrow',
6    VERSION_FROM      => 'lib/GD/Arrow.pm', # finds $VERSION
7    PREREQ_PM         => { GD => 0, Carp => 0 }, # e.g., Module::Name => 1.1
8    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
9      (ABSTRACT_FROM  => 'lib/GD/Arrow.pm', # retrieve abstract from module
10       AUTHOR         => 'Todd Caine <tcaine@pobox.com>') : ()),
11);
12