blob: b076284a4b39d80e5bb98691ca6168a0a2c9f773 [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,
16 'Carp' => 0,
17 'strict' => 0,
18 'warnings' => 0,
19 'utf8' => 0,
20 'bytes' => 0
21 },
22# LICENSE => 'perl',
23 MIN_PERL_VERSION => '5.016',
24 test => {
25 TESTS => 't/*.t'
26 }
27);