diff options
author | mark <mark> | 2010-05-18 18:55:03 +0000 |
---|---|---|
committer | mark <mark> | 2010-05-18 18:55:03 +0000 |
commit | bfcab12bcc31b0445689f03593a8bdbaa84aa4a5 (patch) | |
tree | 78b2b44a5e959647974d4319b21c183d7bcee0ac /Makefile.PL |
Initial release
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..02c2a8e --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::NMI', + AUTHOR => 'Mark Wells <mark@freeside.biz>', + VERSION_FROM => 'NMI.pm', + ($ExtUtils::MakeMaker::VERSION >= 6.3002 + ? ('LICENSE'=> 'perl') + : ()), + PL_FILES => {}, + PREREQ_PM => { + 'Test::More' => 0, + 'Business::OnlinePayment' => 3, + 'Business::OnlinePayment::HTTPS' => 0, + }, + dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + clean => { FILES => 'Business-OnlinePayment-NMI-*' }, +); |