diff options
author | mark <mark> | 2009-06-05 09:05:56 +0000 |
---|---|---|
committer | mark <mark> | 2009-06-05 09:05:56 +0000 |
commit | f982892c5f462471d94d40d29740178d04a78caa (patch) | |
tree | 76c9869d761bbf0a023b0151b05a725121a4b1fd /Makefile.PL |
B:OP:WesternACH startstart
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..ac87433 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,19 @@ +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::OnlinePayment::WesternACH', + AUTHOR => 'Mark Wells <mark@freeside.biz>', + VERSION_FROM => 'lib/Business/OnlinePayment/WesternACH.pm', + ABSTRACT_FROM => 'lib/Business/OnlinePayment/WesternACH.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-WesternACH-*' }, +); |