-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (24 loc) · 837 Bytes
/
Makefile.PL
File metadata and controls
26 lines (24 loc) · 837 Bytes
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
use ExtUtils::MakeMaker;
$PREREQS = {
'Test::More' => 0,
'YAML' => 0,
'Dancer' => 1.1803,
'Dancer::Plugin::REST' => 0,
'DateTime' => 0,
'DateTime::Format::MySQL' => 0,
'Plack' => 0,
'Plack::Runner' => 0
};
WriteMakefile(
NAME => 'atoms',
AUTHOR => q{YOUR NAME <youremail@example.com>},
VERSION_FROM => 'lib/atoms.pm',
ABSTRACT => 'YOUR APPLICATION ABSTRACT',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => $PREREQS,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'atoms-*' },
);