1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Business::BatchPayment::KeyBank',
AUTHOR => q{Mark Wells <mark@freeside.biz>},
VERSION_FROM => 'KeyBank.pm',
ABSTRACT_FROM => 'KeyBank.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Text::CSV' => '1.0',
'Business::BatchPayment' => 0,
'Moose' => 1.09,
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Business-BatchPayment-KeyBank-*' },
);
|