forked from domm/perl-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
40 lines (39 loc) · 1.16 KB
/
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
31
32
33
34
35
36
37
38
39
40
use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'LWP::Authen::OAuth2',
AUTHOR => q{Ben Tilly <btilly@gmail.com>},
VERSION_FROM => 'lib/LWP/Authen/OAuth2.pm',
ABSTRACT_FROM => 'lib/LWP/Authen/OAuth2.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
MIN_PERL_VERSION => 5.006,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
},
PREREQ_PM => {
'LWP' => 4.0,
'LWP::Protocol::https' => 6.0,
'Mozilla::CA' => 20000101,
'JSON' => 2,
'Module::Load' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'LWP-Authen-OAuth2-*' },
(eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/domm/perl-oauth2.git',
web => 'https://github.com/domm/perl-oauth2',
},
}})
: ()
),
);