-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
40 lines (37 loc) · 1.38 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 strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::Auth::Extensible::Provider::LDAP',
AUTHOR => q{David Precious <davidp@preshweb.co.uk>},
VERSION_FROM => 'lib/Dancer/Plugin/Auth/Extensible/Provider/LDAP.pm',
ABSTRACT_FROM => 'lib/Dancer/Plugin/Auth/Extensible/Provider/LDAP.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
EXE_FILES => [ ],
PREREQ_PM => {
'Test::More' => 0,
'Mock::Quick' => 0,
'Dancer::Plugin::Auth::Extensible' => 0,
'Net::LDAP' => 0,
},
MIN_PERL_VERSION => 5.006001,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-Auth-Extensible-*' },
META_MERGE => {
"meta-spec" => { version => 2 },
resources => {
repository => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible-Provider-LDAP',
bugtracker => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible-Provider-LDAP/issues',
homepage => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible-Provider-LDAP/',
},
prereqs => {
runtime => {
recommends => {
}
}
}
},
);