-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
30 lines (29 loc) · 935 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
25
26
27
28
29
30
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Zonemaster_Dancer',
DISTVNAME => 'Zonemaster_Dancer',
AUTHOR => q{Michal TOMA <[email protected]>},
VERSION_FROM => 'lib/Zonemaster/GUI/Dancer/Frontend.pm',
ABSTRACT => 'The Zonemaster project Web Frontend',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
PL_FILES => {},
PREREQ_PM => {
'Starman' => 0,
'Template' => 0,
'LWP::UserAgent' => 0,
'Time::HiRes' => 0,
'Plack::Builder' => 0,
'Text::Markdown' => 0,
'HTML::Entities' => 0,
'JSON' => 0,
'Test::More' => 0,
'YAML' => 0,
'Dancer' => 1.3095,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Zonemaster_Dancer-*' },
);