-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile.PL
34 lines (31 loc) · 1.22 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
use 5.016;
use strict;
use warnings;
use ExtUtils::MakeMaker;
# File::Temp 0.2308+ is required to avoid flock bugs
WriteMakefile(
NAME => 'Mojolicious::Plugin::Status',
VERSION_FROM => 'lib/Mojolicious/Plugin/Status.pm',
ABSTRACT => 'Mojolicious server status',
AUTHOR => 'Sebastian Riedel <[email protected]>',
LICENSE => 'artistic_2',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => {version => 2},
no_index => {directory => ['t']},
prereqs => {runtime => {requires => {perl => '5.016'}}},
resources => {
bugtracker => {web => 'https://github.com/mojolicious/mojo-status/issues'},
homepage => 'https://mojolicious.org',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {
type => 'git',
url => 'https://github.com/mojolicious/mojo-status.git',
web => 'https://github.com/mojolicious/mojo-status',
},
x_IRC => {url => 'irc://irc.libera.chat/#mojo', web => 'https://web.libera.chat/#mojo'}
},
},
PREREQ_PM => {Mojolicious => '9.11', 'BSD::Resource' => 0, 'Sereal' => 0, 'File::Map' => 0, 'File::Temp' => '0.2308'},
test => {TESTS => 't/*.t'}
);