diff options
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..b098892 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,22 @@ +use 5.005; +use ExtUtils::MakeMaker; +# See lib/ExtUtils/MakeMaker.pm for details of how to influence +# the contents of the Makefile that is written. +WriteMakefile( + NAME => 'Business::OnlinePayment::Capstone', + VERSION_FROM => 'lib/Business/OnlinePayment/Capstone.pm', # finds $VERSION + PREREQ_PM => { # e.g., Module::Name => 1.1 + 'Business::OnlinePayment' => 0, + + # for HTTPS (maybe it should be a separate dist?) + 'URI::Escape' => 0, + 'Tie::IxHash' => 0, + + # 'Net::SSLeay' => 0, + # or 'Crypt::SSLeay' => 0, + # 'URI + }, + ($] >= 5.005 ? ## Add these new keywords supported since 5.005 + (ABSTRACT_FROM => 'lib/Business/OnlinePayment/Capstone.pm', # retrieve abstract from module + AUTHOR => 'Ivan Kohler <ivan-capstone@420.am>') : ()), +); |