blob: 7ee0a7aaacd375afcc28e5e4c6c3da4001d2d92d [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(
8 NAME => 'KorAP::Bundle',
9 AUTHOR => 'Nils Diewald',
10 ABSTRACT => 'Perl Implementation for Generating Multifoundry Lucene Indices',
11 VERSION_FROM => 'lib/KorAP/Bundle.pm',
12 PREREQ_PM => {
13 'Mojolicious' => 4.51,
14 'Packed::Array' => 0.01,
15 'Log::Log4perl' => 1.42,
Nils Diewald7364d1f2013-11-05 19:26:35 +000016 'JSON::XS' => 3.01,
17 'Set::Scalar' => 1.26,
Nils Diewald092178e2013-11-26 16:18:48 +000018 'IO::Dir::Recursive' => 0,
Nils Diewald7364d1f2013-11-05 19:26:35 +000019 'Benchmark' => 0,
20 'Carp' => 0,
21 'strict' => 0,
22 'warnings' => 0,
23 'utf8' => 0,
Nils Diewald3cf08c72013-12-16 20:31:10 +000024 'bytes' => 0,
25 'List::MoreUtils' => 0.33
Nils Diewald2db9ad02013-10-29 19:26:43 +000026 },
27# LICENSE => 'perl',
28 MIN_PERL_VERSION => '5.016',
29 test => {
30 TESTS => 't/*.t'
31 }
32);