rename our internal VERSION sub to avoid conflict with Perl's needs (thanks to ETHER...
[Business-OnlinePayment-PPIPayMover.git] / Makefile.PL
1 use 5.005;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Business::OnlinePayment::PPIPayMover',
7     VERSION_FROM      => 'lib/Business/OnlinePayment/PPIPayMover.pm', # finds $VERSION
8     PREREQ_PM         => { 'Business::OnlinePayment' => 0,
9                            'Net::SSLeay'             => 0,
10                          },
11     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
12       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/PPIPayMover.pm', # retrieve abstract from module
13        AUTHOR         => 'Ivan Kohler <ivan-ppipaymover@420.am>') : ()),
14 );