summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2012-07-13 10:59:53 -0700
committerMark Wells <mark@freeside.biz>2012-07-13 10:59:53 -0700
commita3deab8366fdd1cdc702007d9bb3e9fdace52d67 (patch)
tree6cd8f5d1efd1c8eaa4779cd5e9a876bb556acc2d /Makefile.PL
initial commit
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL20
1 files changed, 20 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..8c3a103
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,20 @@
+use 5.006;
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::BatchPayment::KeyBank',
+ AUTHOR => q{Mark Wells <mark@freeside.biz>},
+ VERSION_FROM => 'KeyBank.pm',
+ ABSTRACT_FROM => 'KeyBank.pm',
+ ($ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ('LICENSE'=> 'perl')
+ : ()),
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Business-BatchPayment-KeyBank-*' },
+);