blob: 3361ce410bbcc6813e28f2358e1a0b2002062ba0 [file] [log] [blame]
Nils Diewald2db9ad02013-10-29 19:26:43 +00001#!/usr/bin/env perl
2use v5.16;
3use strict;
4use warnings;
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
Nils Diewaldf03c6802014-07-21 16:39:44 +00008 NAME => 'KorAP::Indexer',
Nils Diewald2db9ad02013-10-29 19:26:43 +00009 AUTHOR => 'Nils Diewald',
10 ABSTRACT => 'Perl Implementation for Generating Multifoundry Lucene Indices',
Nils Diewaldf03c6802014-07-21 16:39:44 +000011 VERSION_FROM => 'lib/KorAP/Indexer.pm',
Nils Diewald2db9ad02013-10-29 19:26:43 +000012 PREREQ_PM => {
Nils Diewald8e323ee2014-04-23 17:28:14 +000013 'Mojolicious' => 4.51,
14 'Packed::Array' => 0.01,
15 'Log::Log4perl' => 1.42,
16 'JSON::XS' => 3.01,
17 'Set::Scalar' => 1.26,
18 'XML::Fast' => 0.11,
19 'Try::Tiny' => 0.21,
20 'Array::IntSpan' => 2,
21 'List::MoreUtils' => 0.33,
22 'IO::Dir::Recursive' => 0.03,
23 'Benchmark' => 0,
24 'Carp' => 0,
25 'strict' => 0,
26 'warnings' => 0,
27 'utf8' => 0,
28 'bytes' => 0
Nils Diewald2db9ad02013-10-29 19:26:43 +000029 },
Nils Diewald2db9ad02013-10-29 19:26:43 +000030 MIN_PERL_VERSION => '5.016',
31 test => {
32 TESTS => 't/*.t'
33 }
34);