diff options
author | Ivan Kohler <ivan@freeside.biz> | 2014-07-09 12:13:23 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2014-07-09 12:13:23 -0700 |
commit | f6660ccc1cf3719650dc179aa7b1fd117b07ed0b (patch) | |
tree | 76a750ca7ebe6fee19507681060e4642f947514b /Makefile.PL |
initial try at a module
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..838e74d --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,23 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::FirstDataGlobalGateway', + AUTHOR => q{Ivan Kohler <ivan-firstdataglobalgateway@420.am>}, + VERSION_FROM => 'lib/Business/OnlinePayment/FirstDataGlobalGateway.pm', + ABSTRACT_FROM => 'lib/Business/OnlinePayment/FirstDataGlobalGateway.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'Business::OnlinePayment' => 3.01, + 'SOAP::Lite' => 0, + 'Data::Dumper' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Business-OnlinePayment-FirstDataGlobalGateway-*' }, +); + |