blob: 804bcaf1e210e05d1c378f440507a36cfd950e62 [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,
24 'bytes' => 0
Nils Diewald2db9ad02013-10-29 19:26:43 +000025 },
26# LICENSE => 'perl',
27 MIN_PERL_VERSION => '5.016',
28 test => {
29 TESTS => 't/*.t'
30 }
31);