-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
executable file
·31 lines (28 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
use 5.010001;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Mojolicious::Plugin::DOCRenderer',
VERSION_FROM => 'lib/Mojolicious/Plugin/DOCRenderer.pm',
ABSTRACT => 'Browses online documentation of your Mojolicious application',
AUTHOR => 'Viliam Pucik <viliam.pucik@gmail.com>',
LICENSE => 'artistic_2',
META_MERGE => {
'meta-spec' => {version => 2},
no_index => {directory => ['t']},
prereqs => {runtime => {requires => {perl => '5.010001'}}},
resources => {
bugtracker => {web => 'https://github.com/viliampucik/Mojolicious-Plugin-DocRenderer/issues'},
homepage => 'https://github.com/viliampucik/Mojolicious-Plugin-DocRenderer',
license => ['http://www.opensource.org/licenses/artistic-license-2.0'],
repository => {
type => 'git',
url => 'https://github.com/viliampucik/Mojolicious-Plugin-DocRenderer.git',
web => 'https://github.com/viliampucik/Mojolicious-Plugin-DocRenderer',
},
},
},
PREREQ_PM => {'Mojolicious' => '9.17'},
test => {TESTS => 't/*.pl'}
);