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