forked from bigpresh/Dancer-Plugin-Auth-Extensible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
32 lines (29 loc) · 1.13 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::Auth::Extensible',
AUTHOR => q{David Precious <[email protected]>},
VERSION_FROM => 'lib/Dancer/Plugin/Auth/Extensible.pm',
ABSTRACT_FROM => 'lib/Dancer/Plugin/Auth/Extensible.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Mock::Quick' => 0,
'Dancer' => 1.3118,
'Crypt::SaltedHash' => 0,
'YAML' => 0, # for config files (TODO: make optional?)
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-Auth-Extensible-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible',
bugtracker => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible/issues',
homepage => 'https://github.com/bigpresh/Dancer-Plugin-Auth-Extensible/',
},
},
);