From 7f323b74306dfa89de073a2ca5a34e76537815a7 Mon Sep 17 00:00:00 2001 From: Alex Brelsfoard Date: Fri, 6 Feb 2015 18:10:23 -0500 Subject: Beginning of CPAN/debian package preparation. --- Makefile.PL | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..fe27943 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,24 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::vSecureProcessing', + AUTHOR => q{Alex Brelsfoard }, + VERSION_FROM => 'lib/Business/OnlinePayment/vSecureProcessing.pm', + ABSTRACT_FROM => 'lib/Business/OnlinePayment/vSecureProcessing.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'Business::OnlinePayment' => 3.01, + 'XML::Simple' => 0, + 'Template' => 0, + 'Data::Dumper' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Business-OnlinePayment-vSecureProcessing-*' }, +); + -- cgit v1.2.1