summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 93a5ebdf2062e6fe0b76edc940446b64ac3e485f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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',
    'VERSION_FROM' => 'OnlinePayment.pm', # finds $VERSION
    'AUTHOR'       => 'Ivan Kohler <ivan-business-onlinepayment@420.am>',
    'NORECURS'     => 1, # dont descend into subdirectories
    'PREREQ_PM'    => { 
                        # 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'},
);