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 => { |
| 13 | 'Mojolicious' => 4.51, |
| 14 | 'Packed::Array' => 0.01, |
| 15 | 'Log::Log4perl' => 1.42, |
Nils Diewald | 7364d1f | 2013-11-05 19:26:35 +0000 | [diff] [blame] | 16 | 'JSON::XS' => 3.01, |
| 17 | 'Set::Scalar' => 1.26, |
Nils Diewald | 092178e | 2013-11-26 16:18:48 +0000 | [diff] [blame] | 18 | 'IO::Dir::Recursive' => 0, |
Nils Diewald | 7364d1f | 2013-11-05 19:26:35 +0000 | [diff] [blame] | 19 | 'Benchmark' => 0, |
| 20 | 'Carp' => 0, |
| 21 | 'strict' => 0, |
| 22 | 'warnings' => 0, |
| 23 | 'utf8' => 0, |
Nils Diewald | 3cf08c7 | 2013-12-16 20:31:10 +0000 | [diff] [blame] | 24 | 'bytes' => 0, |
| 25 | 'List::MoreUtils' => 0.33 |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 26 | }, |
| 27 | # LICENSE => 'perl', |
| 28 | MIN_PERL_VERSION => '5.016', |
| 29 | test => { |
| 30 | TESTS => 't/*.t' |
| 31 | } |
| 32 | ); |