-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile.PL
67 lines (59 loc) · 1.84 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
use 5.016;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
VERSION_FROM => 'lib/Kalamar.pm',
ABSTRACT => 'Mojolicious-based Frontend for KorAP',
NAME => 'Kalamar',
AUTHOR => 'Nils Diewald',
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Mojo::Session' => 1.06,
'Test::Mojo::WithRoles' => 0.02,
'Test::Output' => 0,
},
LICENSE => 'freebsd',
PREREQ_PM => {
'Mojolicious' => '9.34',
'Mojolicious::Plugin::TagHelpers::Pagination' => 0.10,
'Mojolicious::Plugin::TagHelpers::MailToChiffre' => 0.13,
'Mojolicious::Plugin::ClosedRedirect' => 0.15,
'Mojolicious::Plugin::Notifications' => 1.08,
'Mojolicious::Plugin::MailException' => 0.24,
'Mojolicious::Plugin::Util::RandomString' => 0.09,
'Mojolicious::Plugin::CHI' => 0.20,
'Mojolicious::Plugin::ClientIP' => 0.02,
'Mojolicious::Plugin::AutoSecrets' => 0.006,
'Mojolicious::Plugin::TagHelpers::ContentBlock' => 0.11,
'Cache::FastMmap' => 1.57,
'DateTime' => 1.63,
# Required for Mojolicious::Plugin::CHI
'Data::Serializer' => 0.65,
'JSON' => 4.10,
# Required for older perl bundles
'List::Util' => 1.63,
# Required for bundled plugins
'Mojolicious::Plugin::Piwik' => 2.00,
# Currently on GitHub only (github.com/akron)
'Mojolicious::Plugin::Localize' => 0.22
},
META_MERGE => {
'meta-spec' => { version => 2 },
requires => { perl => '5.010001' },
resources => {
license => 'https://opensource.org/licenses/BSD-2-Clause',
repository => {
type => 'git',
url => 'https://github.com/KorAP/Kalamar.git',
web => 'https://github.com/KorAP/Kalamar',
},
bugtracker => {
web => 'https://github.com/KorAP/Kalamar/issues'
}
}
},
test => {
TESTS => 't/*.t t/plugin/*.t t/command/*.t'
}
);