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
|
use ExtUtils::MakeMaker;
WriteMakefile(
AUTHOR => '"Jannis M. Hoffmann" <jannis@fehcom.de>',
ABSTRACT_FROM => 'lib/JWebmail.pm',
MIN_PERL_VERSION => 'v5.22',
NAME => 'JWebmail',
VERSION_FROM => 'lib/JWebmail.pm',
LICENSE => 'gpl_3',
PREREQ_PM => {
Mojolicious => '9.19',
Crypt::URandom => '0.36',
Digest::HMAC_MD5 => '1.04',
Email::MIME => '1.949',
Mail::Box::Manager => 'v3.9',
Role::Tiny => 'v2.2',
Class::Method::Modifiers => '2.13',
TOML::Tiny => '0.15',
namespace::clean => '0.27',
},
EXE_FILES => ['script/jwebmail', 'script/qmauth.pl'],
test => {TESTS => 't/*.t'},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
bugtracker => {web => 'https://github.com/D1CED/JWebmail/issues'},
repository => {
type => 'git',
url => 'git://github.com/D1CED/JWebmail.git',
web => 'https://github.com/D1CED/JWebmail',
},
},
},
)
|