From d8a1293c21b122228aeb32d965ae6f793e7c6d59 Mon Sep 17 00:00:00 2001 From: Mark Wells Date: Thu, 24 Jan 2013 16:51:46 -0800 Subject: start --- 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..cbe9f6c --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,20 @@ +use 5.006; +use strict; +use warnings; +use ExtUtils::MakeMaker; + +WriteMakefile( + NAME => 'Business::BatchPayment::CardFortress', + AUTHOR => q{Mark Wells }, + VERSION_FROM => 'CardFortress.pm', + ABSTRACT_FROM => 'CardFortress.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-CardFortress-*' }, +); -- cgit v1.2.1