blob: bce1632ac10e5ac7d4e3fdb3d05b55baa7764d80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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'},
);
|