blob: db22f559d2623c4152cd2d9e2c02525eca01be10 [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,
18 'Benchmark' => 0,
19 'Carp' => 0,
20 'strict' => 0,
21 'warnings' => 0,
22 'utf8' => 0,
23 'bytes' => 0
Nils Diewald2db9ad02013-10-29 19:26:43 +000024 },
25# LICENSE => 'perl',
26 MIN_PERL_VERSION => '5.016',
27 test => {
28 TESTS => 't/*.t'
29 }
30);