-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile.PL
30 lines (29 loc) · 979 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
29
30
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Business::Stripe',
AUTHOR => q{Paul Pham <[email protected]>},
VERSION_FROM => 'Stripe.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'JSON' => 0,
'LWP::UserAgent' => 0,
'HTTP::Request::Common' => 0,
'MIME::Base64' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Business-Stripe-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/aquaron/Business-Stripe',
license => 'http://dev.perl.org/licenses/',
bugtracker => 'https://github.com/aquaron/Business-Stripe/issues/',
}
}
);