diff options
author | ivan <ivan> | 2005-03-16 10:37:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2005-03-16 10:37:56 +0000 |
commit | e9a8450242559f58aa2535a489d7a7acc85790e2 (patch) | |
tree | 8976a111a389153de569b73157cc5f07dfa5a5a6 /Makefile.PL |
initial import
Diffstat (limited to 'Makefile.PL')
-rw-r--r-- | Makefile.PL | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..bce1632 --- /dev/null +++ b/Makefile.PL @@ -0,0 +1,23 @@ +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::eSelectPlus', + 'VERSION_FROM' => 'eSelectPlus.pm', # finds $VERSION + 'AUTHOR' => 'Ivan Kohler <ivan-eselectplus@420.am>', + #'NORECURS' => 1, # dont descend into subdirectories + 'PREREQ_PM' => { + '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 + + }, + #'dist' => {CI => 'ci -l'}, +); + |