Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 1 | #!/usr/bin/env perl |
Nils Diewald | 840c924 | 2014-10-28 19:51:26 +0000 | [diff] [blame] | 2 | use v5.14; |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 3 | use strict; |
| 4 | use warnings; |
| 5 | use ExtUtils::MakeMaker; |
| 6 | |
| 7 | WriteMakefile( |
Nils Diewald | f03c680 | 2014-07-21 16:39:44 +0000 | [diff] [blame] | 8 | NAME => 'KorAP::Indexer', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 9 | AUTHOR => 'Nils Diewald', |
Nils Diewald | 6a2a14b | 2015-06-17 20:34:24 +0000 | [diff] [blame] | 10 | ABSTRACT => 'Preprocessor for Krill Index preparation', |
Nils Diewald | f03c680 | 2014-07-21 16:39:44 +0000 | [diff] [blame] | 11 | VERSION_FROM => 'lib/KorAP/Indexer.pm', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 12 | PREREQ_PM => { |
Nils Diewald | 6a2a14b | 2015-06-17 20:34:24 +0000 | [diff] [blame] | 13 | 'Mojolicious' => 6.11, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 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, |
Akron | 1622dd9 | 2015-12-09 22:34:26 +0100 | [diff] [blame] | 20 | 'Array::IntSpan' => 2.003, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 21 | 'List::MoreUtils' => 0.33, |
| 22 | 'IO::Dir::Recursive' => 0.03, |
Nils Diewald | 207439c | 2014-11-01 00:16:38 +0000 | [diff] [blame] | 23 | 'Directory::Iterator' => 0, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 24 | 'Benchmark' => 0, |
| 25 | 'Carp' => 0, |
| 26 | 'strict' => 0, |
| 27 | 'warnings' => 0, |
| 28 | 'utf8' => 0, |
| 29 | 'bytes' => 0 |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 30 | }, |
Nils Diewald | 840c924 | 2014-10-28 19:51:26 +0000 | [diff] [blame] | 31 | MIN_PERL_VERSION => '5.014', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 32 | test => { |
| 33 | TESTS => 't/*.t' |
| 34 | } |
| 35 | ); |