summaryrefslogtreecommitdiff
path: root/Makefile.PL
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-xMakefile.PL14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100755
index 0000000..e59aed9
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,14 @@
+use 5.008;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'Business::OnlinePayment::InternetSecure',
+ AUTHOR => 'Frederic Briere <fbriere@fbriere.net>',
+ VERSION_FROM => 'InternetSecure.pm',
+ ABSTRACT_FROM => 'InternetSecure.pm',
+ PREREQ_PM => {
+ 'Business::OnlinePayment' => 0,
+ 'Net::SSLeay' => 0,
+ 'XML::Simple' => 0,
+ },
+);