-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
58 lines (53 loc) · 1.63 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
use strict;
use warnings;
use utf8;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Rabbid',
VERSION_FROM => 'lib/Rabbid.pm',
ABSTRACT => 'Recherche- und Analyse-Basis für Belegstellen in Diskursen',
AUTHOR => 'Nils Diewald',
LICENSE => 'bsd_2',
PREREQ_PM => {
'Mojolicious' => '7.21',
'Mojolicious::Plugin::ReplyTable' => 0.04,
'Mojolicious::Plugin::RenderFile' => 0.10,
'Mojolicious::Plugin::Notifications' => 0.09,
'Mojolicious::Plugin::MailException' => 0.19,
'Mojolicious::Plugin::CHI' => 0.11,
'Mojolicious::Plugin::TagHelpers::Pagination' => 0.06,
'Mojolicious::Plugin::TagHelpers::ContentBlock' => 0.01,
'Cache::FastMmap' => 1.40,
'Excel::Writer::XLSX' => 0.84,
'RTF::Writer' => 0,
'Search::Tokenizer' => 1.01,
'Lingua::Stem::UniNE::DE' => 0.08,
# 'Text::FromAny' => 0,
# 'Unicode::Normalize' => 1.18,
'Encode' => 2.73,
'Getopt::Long' => 0,
'XML::Twig' => 3.49,
'DBIx::Oro' => '0.31_9', # GitHub
'Mojolicious::Plugin::Oro' => 0.06, # GitHub
'Mojolicious::Plugin::Oro::Viewer' => 0.04, # GitHub
'Mojolicious::Plugin::Localize' => 0.15, # GitHub
'KorAP::XML::Krill' => 0.18 # GitHub
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Output' => 0
},
META_MERGE => {
recommends => {
# IDS specific sources for user management
# These are closed source
'Mojolicious::Plugin::Oro::Account' => 0.22,
'Mojolicious::Plugin::Oro::Account::ConfirmMail' => 0.06,
# Not necessary
'Mojolicious::Plugin::Mail' => 1.5
}
},
test => {
TESTS => 't/*.t'
}
);