diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 24 |
1 files changed, 24 insertions, 0 deletions
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 <alex@brelsfoard.com>}, + 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-*' }, +); + |