3.00
[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     'PMLIBDIRS'    => [ 'OnlinePayment', 'FraudDetect' ],
9     'NORECURS'     => 1, # dont descend into subdirectories
10     'PREREQ_PM'    => { 
11                         # for HTTPS (maybe it should be a separate dist?)
12                         'URI::Escape' => 0,
13                         'Tie::IxHash' => 0,
14
15                         # 'Net::SSLeay' => 0,
16                         # or 'Crypt::SSLeay' => 0,
17                         #    'URI
18
19                       },
20     #'dist'         => {CI => 'ci -l'},
21 );