summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2012-07-11 00:28:53 -0700
committerIvan Kohler <ivan@freeside.biz>2012-07-11 00:28:53 -0700
commit39e5b6c3302b1c35174583bdae60b2b8d5a78338 (patch)
tree5d3fe4a036a3ccce105815a69a454a743d03cd12 /Makefile.PL
initial commit
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL22
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..839a285
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,22 @@
+use 5.006;
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::BatchPayment::Paymentech',
+ AUTHOR => q{Mark Wells <mark@freeside.biz>},
+ VERSION_FROM => 'Paymentech.pm',
+ ABSTRACT_FROM => 'Paymentech.pm',
+ ($ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ('LICENSE'=> 'perl')
+ : ()),
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Business::BatchPayment' => 0,
+ 'Moose' => 2.000,
+ 'Test::More' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Business-BatchPayment-Paymentech-*' },
+);