2.07
[Business-OnlinePayment-PaymenTech.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME                => 'Business::OnlinePayment::PaymenTech',
7     AUTHOR              => 'Mark Wells <mark@freeside.biz>',
8     VERSION_FROM        => 'lib/Business/OnlinePayment/PaymenTech.pm',
9     ABSTRACT_FROM       => 'lib/Business/OnlinePayment/PaymenTech.pm',
10     ($ExtUtils::MakeMaker::VERSION >= 6.3002
11       ? ('LICENSE'=> 'perl')
12       : ()),
13     PL_FILES            => {},
14     PREREQ_PM => {
15         'Test::More' => 0,
16         'Business::OnlinePayment' => 3,
17         'Business::OnlinePayment::HTTPS' => 0,
18         'XML::Simple' => 0,
19     },
20     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
21     clean               => { FILES => 'Business-OnlinePayment-PaymenTech-*' },
22 );