diff options
Diffstat (limited to 'Makefile.PL')
-rwxr-xr-x | Makefile.PL | 14 |
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, + }, +); |