forked from stregone/mojolicious-plugin-basicauthplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
41 lines (40 loc) · 1.32 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
41
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::BasicAuthPlus',
AUTHOR => q{Brad Robertson <[email protected]>},
VERSION_FROM => 'lib/Mojolicious/Plugin/BasicAuthPlus.pm',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/BasicAuthPlus.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
MIN_PERL_VERSION => '5.006001',
BUILD_REQUIRES => {
'Mojo::IOLoop' => 0,
'Test::More' => 0,
'Test::Mojo' => 0,
'Mojo::ByteStream' => 0,
'Mojolicious::Lite' => 0,
},
META_MERGE => {
resources => {
repository =>
'http://github.com/stregone/mojolicious-plugin-basicauthplus',
bugtracker =>
'http://github.com/stregone/mojolicious-plugin-basicauthplus/issues'
}
},
PREREQ_PM => {
'Test::More' => 0,
'Mojolicious' => '1.4',
'Authen::Simple::Password' => 0,
'Authen::Simple::Passwd' => 0,
'Net::LDAP' => 0,
},
EXE_FILES => ['examples/sample.pl'],
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mojolicious-Plugin-BasicAuthPlus-*' },
);