summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-02-06 01:22:06 -0800
committerIvan Kohler <ivan@freeside.biz>2014-02-06 01:22:06 -0800
commitc1b518f59064671309c220489efd8d59daade4aa (patch)
tree923656164810295ca6bd29e048d845480c70cf4f /Makefile.PL
first crack at module
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL23
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..7ed1b7a
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,23 @@
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::OnlinePayment::IATSPayments',
+ AUTHOR => q{Ivan Kohler <ivan-iatspayments@420.am>},
+ VERSION_FROM => 'lib/Business/OnlinePayment/IATSPayments.pm',
+ ABSTRACT_FROM => 'lib/Business/OnlinePayment/IATSPayments.pm',
+ ($ExtUtils::MakeMaker::VERSION >= 6.3002
+ ? ('LICENSE'=> 'perl')
+ : ()),
+ PL_FILES => {},
+ PREREQ_PM => {
+ 'Test::More' => 0,
+ 'Business::OnlinePayment' => 3.01,
+ 'SOAP::Lite' => 0,
+ 'Data::Dumper' => 0,
+ },
+ dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ clean => { FILES => 'Business-OnlinePayment-IATSPayments-*' },
+);
+