-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile.PL
More file actions
34 lines (32 loc) · 1.16 KB
/
Makefile.PL
File metadata and controls
34 lines (32 loc) · 1.16 KB
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 strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::ReplyTime',
VERSION_FROM => 'lib/Mojolicious/Plugin/ReplyTime.pm',
ABSTRACT => 'Reply with a simple response of just the current time',
AUTHOR => 'Stefan Adams <sadams@cpan.org>',
LICENSE => 'artistic_2',
META_MERGE => {
dynamic_config => 0,
'meta-spec' => {version => 2},
no_index => {
directory => [qw(t)],
},
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
bugtracker => {web => 'https://github.com/stefanadams/mojolicious-plugin-replytime/issues'},
homepage => 'https://stefan.adams.fm',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {
type => 'git',
url => 'https://github.com/stefanadams/mojolicious-plugin-replytime.git',
web => 'https://github.com/stefanadams/mojolicious-plugin-replytime',
},
x_IRC => 'irc://irc.freenode.net/#mojo'
},
},
PREREQ_PM => {'Mojolicious' => '7.60'},
EXE_FILES => ['script/replytime'],
test => {TESTS => 't/*.t'}
);