diff options
author | ivan <ivan> | 2005-08-24 14:58:23 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-08-24 14:58:23 +0000 |
commit | 0aae49345c4ed31a94a19328693af3c669207bd1 (patch) | |
tree | 94edd42e9dbfb911e2bd13255abda37dd6c21d45 /Makefile.PL |
initial importSTART
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>') : ()), +); |