Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 1 | #!/usr/bin/env perl |
| 2 | use v5.16; |
| 3 | use strict; |
| 4 | use warnings; |
| 5 | use ExtUtils::MakeMaker; |
| 6 | |
| 7 | WriteMakefile( |
| 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 => { |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame^] | 13 | '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 Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 29 | }, |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 30 | MIN_PERL_VERSION => '5.016', |
| 31 | test => { |
| 32 | TESTS => 't/*.t' |
| 33 | } |
| 34 | ); |