blob: 40de23c83b16b23b311b31c531bc96abb83b13ff [file] [log] [blame]
Akronb8410e52020-09-08 13:35:40 +02001use 5.016;
Nils Diewald02df9912014-06-03 16:08:07 +00002use strict;
3use warnings;
4
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
Nils Diewald2fe12e12015-03-06 16:47:06 +00008 VERSION_FROM => 'lib/Kalamar.pm',
Akrone6e5b0b2015-05-21 22:49:39 +02009 ABSTRACT => 'Mojolicious-based Frontend for KorAP',
Nils Diewald2fe12e12015-03-06 16:47:06 +000010 NAME => 'Kalamar',
Nils Diewald02df9912014-06-03 16:08:07 +000011 AUTHOR => 'Nils Diewald',
Nils Diewald02df9912014-06-03 16:08:07 +000012 BUILD_REQUIRES => {
Akron17c60812020-06-15 14:29:30 +020013 'Test::More' => 0,
14 'Test::Mojo::Session' => 1.06,
15 'Test::Mojo::WithRoles' => 0.02,
Nils Diewald02df9912014-06-03 16:08:07 +000016 },
Akron4fabd022018-04-24 18:01:01 +020017 LICENSE => 'freebsd',
Nils Diewald02df9912014-06-03 16:08:07 +000018 PREREQ_PM => {
Akron3b3a4342021-05-31 11:14:48 +020019 'Mojolicious' => '9.19',
Akron1e1a8b32021-02-08 14:20:28 +010020 'Mojolicious::Plugin::TagHelpers::Pagination' => 0.08,
Akron1011daf2021-03-01 12:34:58 +010021 'Mojolicious::Plugin::TagHelpers::MailToChiffre' => 0.13,
Akrona3523932020-05-08 14:49:00 +020022 'Mojolicious::Plugin::ClosedRedirect' => 0.15,
Akron1e1a8b32021-02-08 14:20:28 +010023 'Mojolicious::Plugin::Notifications' => 1.06,
24 'Mojolicious::Plugin::MailException' => 0.24,
25 'Mojolicious::Plugin::Util::RandomString' => 0.09,
Akron8df95122018-11-14 17:03:42 +010026 'Mojolicious::Plugin::CHI' => 0.20,
Akron1e1a8b32021-02-08 14:20:28 +010027 'Mojolicious::Plugin::ClientIP' => 0.02,
28 'Cache::FastMmap' => 1.56,
29 'Data::Serializer' => 0.65,
30 'Mojo::JWT' => 0.09,
Nils Diewald996aa552014-12-02 03:26:44 +000031
Akron751e9e42019-03-13 09:54:55 +010032 # Required for Data::Serializer at the moment
Akron1e1a8b32021-02-08 14:20:28 +010033 'JSON' => 4.03,
Akron751e9e42019-03-13 09:54:55 +010034
Akron65909942021-03-03 09:50:52 +010035 # Required for older perl bundles
36 'List::Util' => 1.45,
37
Akron7c758412018-11-13 14:17:00 +010038 # Required for bundled plugins
Akron0a4d36e2021-01-18 17:50:48 +010039 'Mojolicious::Plugin::Piwik' => 0.28,
Akron7c758412018-11-13 14:17:00 +010040
Nils Diewald023c6712015-05-21 20:12:30 +000041 # Currently on GitHub only (github.com/akron)
Akron1e1a8b32021-02-08 14:20:28 +010042 'Mojolicious::Plugin::Localize' => 0.21,
43 'Mojolicious::Plugin::TagHelpers::ContentBlock' => 0.09,
Nils Diewald02df9912014-06-03 16:08:07 +000044 },
Akron87468c22021-02-08 09:30:01 +010045
46 META_MERGE => {
47 'meta-spec' => { version => 2 },
48 requires => { perl => '5.010001' },
49 resources => {
50 license => 'https://opensource.org/licenses/BSD-2-Clause',
51 repository => {
52 type => 'git',
53 url => 'https://github.com/KorAP/Kalamar.git',
54 web => 'https://github.com/KorAP/Kalamar',
55 },
56 bugtracker => {
57 web => 'https://github.com/KorAP/Kalamar/issues'
58 }
59 }
60 },
61
Nils Diewald02df9912014-06-03 16:08:07 +000062 test => {
63 TESTS => 't/*.t'
64 }
65);