-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
39 lines (38 loc) · 1.41 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
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer2::Plugin::TemplateFlute',
VERSION_FROM => 'lib/Dancer2/Plugin/TemplateFlute.pm',
ABSTRACT_FROM => 'lib/Dancer2/Plugin/TemplateFlute.pm',
AUTHOR => 'Evan Brown (evan@bottlenose-wine.com)',
BUILD_REQUIRES => {
'aliased' => 0,
'JSON::MaybeXS' => 0,
'Test::More' => '0.94', # subtest
'Test::Deep' => 0,
'Test::Fatal' => 0,
},
PREREQ_PM => {
'Carp' => 0,
'Dancer2' => '0.200000',
'Dancer2::Plugin' => 0,
'Dancer2::Template::TemplateFlute' => '0.201',
'Hash::MultiValue' => '0.12',
'Moo' => '2.000000',
'namespace::clean' => 0,
'Type::Tiny' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/interchange/Dancer2-Plugin-TemplateFlute.git',
web => 'https://github.com/interchange/Dancer2-Plugin-TemplateFlute',
bugtracker => 'https://github.com/interchange/Dancer2-Plugin-TemplateFlute/issues',
},
IRC => 'irc://irc.perl.org/#dancer',
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer2-Plugin-TemplateFlute-*' },
);