- minor cleanup of test drivers
[Business-OnlinePayment.git] / Makefile.PL
1 use ExtUtils::MakeMaker;
2 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
3 # the contents of the Makefile that is written.
4 WriteMakefile(
5     'NAME'         => 'Business::OnlinePayment',
6     'VERSION_FROM' => 'OnlinePayment.pm', # finds $VERSION
7     'AUTHOR'       => 'Ivan Kohler <ivan-business-onlinepayment@420.am>',
8     'NORECURS'     => 1, # dont descend into subdirectories
9     'PREREQ_PM'    => { 
10                         # for HTTPS (maybe it should be a separate dist?)
11                         'URI::Escape' => 0,
12                         'Tie::IxHash' => 0,
13
14                         # 'Net::SSLeay' => 0,
15                         # or 'Crypt::SSLeay' => 0,
16                         #    'URI
17
18                       },
19     #'dist'         => {CI => 'ci -l'},
20 );