-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
24 lines (23 loc) · 865 Bytes
/
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
use 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Plack::Middleware::Debug::Dancer::TemplateTokens',
AUTHOR => q{Kenichi Kobayashi <niratama3@gmail.com>},
VERSION_FROM => 'lib/Plack/Middleware/Debug/Dancer/TemplateTokens.pm',
ABSTRACT_FROM => 'lib/Plack/Middleware/Debug/Dancer/TemplateTokens.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Dancer::Hook' => 0,
'Plack::Util::Accessor' => 0,
'Plack::Middleware::Debug::Base' => 0,
'parent' => 0,
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Plack-Middleware-Debug-Dancer-TemplateTokens-*' },
);