forked from kolok/Dancer-Plugin-SporeDefinitionControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
22 lines (21 loc) · 715 Bytes
/
Makefile.PL
File metadata and controls
22 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Dancer::Plugin::SporeDefinitionControl',
AUTHOR => q{Nicolas Oudard <nicolas@oudard.org>},
VERSION_FROM => 'lib/Dancer/Plugin/SporeDefinitionControl.pm',
LICENSE => 'perl',
PL_FILES => {},
PREREQ_PM => {
'Dancer' => 1.3002,
'Dancer::Plugin' => 0,
'Dancer::Plugin::REST' => 0.04,
'Dancer::Test' => 0,
'YAML' => 0,
'File::Spec' => 0,
'Test::More' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Dancer-Plugin-SporeDefinitionControl-*' },
);