Initial import
[Business-OnlinePayment-TransFirsteLink.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2
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::TransFirsteLink',
7     VERSION_FROM => 'TransFirsteLink.pm',
8     PREREQ_PM    => {
9         Business::OnlinePayment        => '3',
10         Business::OnlinePayment::HTTPS => '0.05',
11     },
12     (
13         $] >= 5.005
14         ?    ## Add these new keywords supported since 5.005
15           (
16             ABSTRACT_FROM => 'TransFirsteLink.pm',
17             AUTHOR        => 'Jeff Finucane <transfirst@weasellips.com>',
18           )
19         : ()
20     ),
21 );