diff options
author | Alex Brelsfoard <alex@Alexs-MacBook-Pro.local> | 2015-02-06 18:10:23 -0500 |
---|---|---|
committer | Alex Brelsfoard <alex@Alexs-MacBook-Pro.local> | 2015-02-06 18:10:23 -0500 |
commit | 7f323b74306dfa89de073a2ca5a34e76537815a7 (patch) | |
tree | bee638db259a06a39f6d50e9f3ac275e134fc646 /Makefile.PL | |
parent | 222fd476087b15dd0bf4a76d6d19b914a0dff349 (diff) |
Beginning of CPAN/debian package preparation.
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-*' }, +); + |