summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authormark <mark>2009-10-07 16:38:40 +0000
committermark <mark>2009-10-07 16:38:40 +0000
commitc95a7bc2db620dd2eb857102511598b6c0bbca6f (patch)
treea89438efb4eea214219b13a6aa523fb4063c7440 /Makefile.PL
New Paymentech module renamed
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL19
1 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..d0b1788
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,19 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::OnlinePayment::PaymenTech',
+ AUTHOR => 'Mark Wells <mark@freeside.biz>',
+ VERSION_FROM => 'lib/Business/OnlinePayment/PaymenTech.pm',
+ ABSTRACT_FROM => 'lib/Business/OnlinePayment/PaymenTech.pm',
+ ($ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ('LICENSE'=> 'perl')
+ : ()),
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Business-OnlinePayment-PaymenTech-*' },
+);