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