From a3deab8366fdd1cdc702007d9bb3e9fdace52d67 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Fri, 13 Jul 2012 10:59:53 -0700 Subject: initial commit --- Makefile.PL | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile.PL (limited to 'Makefile.PL') 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 }, + 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-*' }, +); -- cgit v1.2.1