From 39e5b6c3302b1c35174583bdae60b2b8d5a78338 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Wed, 11 Jul 2012 00:28:53 -0700 Subject: initial commit --- Makefile.PL | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') 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 }, + 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-*' }, +); -- cgit v1.2.1