-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathMakefile.PL
28 lines (27 loc) · 1009 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Business::OnlinePayment::Braintree',
AUTHOR => q{Stefan Hornburg (Racke) <[email protected]>},
VERSION_FROM => 'lib/Business/OnlinePayment/Braintree.pm',
ABSTRACT_FROM => 'lib/Business/OnlinePayment/Braintree.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Business::OnlinePayment' => 3.01,
'Net::Braintree' => 0.027000,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Business-OnlinePayment-Braintree-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/interchange/Business-OnlinePayment-Braintree',
bugtracker => 'https://github.com/interchange/Business-OnlinePayment-Braintree/issues'
},
},
);