From f6660ccc1cf3719650dc179aa7b1fd117b07ed0b Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 9 Jul 2014 12:13:23 -0700 Subject: initial try at a module --- Makefile.PL | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') 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 }, + 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-*' }, +); + -- cgit v1.2.1