debian package source directory
[Business-OnlinePayment-Exact.git] / Makefile.PL
1 use 5.006001;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'Business::OnlinePayment::Exact',
7     VERSION_FROM      => 'lib/Business/OnlinePayment/Exact.pm', # finds $VERSION
8     PREREQ_PM         => {'Test::More'  =>  0,
9                           'Term::ReadLine' => 0,
10                           'Term::ReadLine::Gnu' => 0,
11                           'Business::OnlinePayment' => '2.01',
12                           'SOAP::Lite' => '0.65_3'}, # e.g., Module::Name => 1.1
13     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
14       (ABSTRACT_FROM  => 'lib/Business/OnlinePayment/Exact.pm', # retrieve abstract from module
15        AUTHOR         => 'C.J. Adams-Collier <cjac@colliertech.org>') : ()),
16     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17 );
18