From ce9fa73d247b7398f94af6262ae97151c18aac89 Mon Sep 17 00:00:00 2001 From: mark Date: Fri, 29 Jan 2010 21:15:24 +0000 Subject: Initial release --- Makefile.PL | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..ff2517f --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,19 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::GlobalPayments', + AUTHOR => 'Mark Wells ', + VERSION_FROM => 'GlobalPayments.pm', + ABSTRACT_FROM => 'GlobalPayments.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Business-OnlinePayment-GlobalPayments-*' }, +); -- cgit v1.2.1