summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 5b8088260f75b04d0ac1f884f3ca63420bc3ad49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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::OpenECHO',
    'VERSION_FROM' => 'OpenECHO.pm', # finds $VERSION
    'AUTHOR'       => 'Ivan Kohler <ivan-openecho@420.am>', #really just
                                                            #the maintainer
    #'NORECURS'     => 1, # dont descend into subdirectories
    'PREREQ_PM'    => {
                        'Business::OnlinePayment' => 3,

                        # 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'},
);