-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
36 lines (34 loc) · 1.12 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Command::static',
VERSION_FROM => 'lib/Mojolicious/Command/static.pm',
ABSTRACT => 'Quickly serve static files',
AUTHOR => 'Stefan Adams <sadams@cpan.org>',
LICENSE => '',
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-command-static/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-command-static.git',
web => 'https://github.com/stefanadams/mojolicious-command-static',
},
x_IRC => 'irc://irc.freenode.net/#mojo'
},
},
PREREQ_PM => {
'Mojolicious' => '8.00',
'List::MoreUtils' => '0.428',
},
test => {TESTS => 't/*.t'}
);