-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
42 lines (41 loc) · 1.27 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
42
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::ServerStatus',
AUTHOR => 'fu kai <[email protected]>',
EXE_FILES => [],
PL_FILES => {},
LICENSE => 'perl',
DISTNAME => 'Mojolicious-Plugin-ServerStatus',
ABSTRACT_FROM => 'lib/Mojolicious/Plugin/ServerStatus.pm',
VERSION_FROM => 'lib/Mojolicious/Plugin/ServerStatus.pm',
($ExtUtils::MakeMaker::VERSION > 6.48
? (MIN_PERL_VERSION => 5.010001) # mojolicious
: ()
),
PREREQ_PM => {
'Mojolicious' => '4.90',
'Net::CIDR::Lite' => 0,
'Parallel::Scoreboard' => '0.03',
'JSON' => '2.53',
'Fcntl' => 0,
'IO::Handle' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0.90,
},
META_MERGE => {
requires => { perl => '5.010001' }, # mojolicious
resources => {
license => 'http://dev.perl.org/licenses/',
repository => 'https://github.com/iakuf/mojolicious-plugin-serverstatus',
bugtracker => 'https://github.com/iakuf/mojolicious-plugin-serverstatus/issues',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Mojolicious-Plugin-ServerStatus-*' },
#test => {
# TESTS => 't/*.t',
#},
);