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( |
Akron | e4c2e41 | 2016-01-28 15:10:50 +0100 | [diff] [blame] | 8 | NAME => 'KorAP::XML::Krill', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 9 | AUTHOR => 'Nils Diewald', |
Akron | e4c2e41 | 2016-01-28 15:10:50 +0100 | [diff] [blame] | 10 | ABSTRACT => 'Preprocess KorAP XML documents for Krill', |
| 11 | VERSION_FROM => 'lib/KorAP/XML/Krill.pm', |
Akron | 14ca9f0 | 2016-01-29 19:38:18 +0100 | [diff] [blame] | 12 | LICENSE => 'bsd_2', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 13 | PREREQ_PM => { |
Nils Diewald | 6a2a14b | 2015-06-17 20:34:24 +0000 | [diff] [blame] | 14 | 'Mojolicious' => 6.11, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 15 | 'Packed::Array' => 0.01, |
| 16 | 'Log::Log4perl' => 1.42, |
| 17 | 'JSON::XS' => 3.01, |
| 18 | 'Set::Scalar' => 1.26, |
| 19 | 'XML::Fast' => 0.11, |
| 20 | 'Try::Tiny' => 0.21, |
Akron | 1622dd9 | 2015-12-09 22:34:26 +0100 | [diff] [blame] | 21 | 'Array::IntSpan' => 2.003, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 22 | 'List::MoreUtils' => 0.33, |
Akron | 96165ad | 2016-02-15 18:09:41 +0100 | [diff] [blame] | 23 | 'Parallel::ForkManager' => 1.17, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 24 | 'IO::Dir::Recursive' => 0.03, |
Akron | 150b29e | 2016-02-14 23:06:48 +0100 | [diff] [blame] | 25 | 'File::Temp' => 0, |
Nils Diewald | 207439c | 2014-11-01 00:16:38 +0000 | [diff] [blame] | 26 | 'Directory::Iterator' => 0, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 27 | 'Benchmark' => 0, |
| 28 | 'Carp' => 0, |
| 29 | 'strict' => 0, |
| 30 | 'warnings' => 0, |
| 31 | 'utf8' => 0, |
Akron | 941c1a6 | 2016-02-23 17:41:41 +0100 | [diff] [blame] | 32 | 'bytes' => 0, |
| 33 | 'Pod::Usage' => 0 |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 34 | }, |
Nils Diewald | 840c924 | 2014-10-28 19:51:26 +0000 | [diff] [blame] | 35 | MIN_PERL_VERSION => '5.014', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 36 | test => { |
Akron | 9c0488f | 2016-01-28 14:17:15 +0100 | [diff] [blame] | 37 | TESTS => |
| 38 | 't/*.t '. |
| 39 | 't/index/*.t ' . |
| 40 | 't/sgbr/*.t ' . |
| 41 | 't/real/*.t' |
Akron | fd0707e | 2016-02-11 22:13:36 +0100 | [diff] [blame] | 42 | }, |
Akron | a9455ec | 2016-02-14 01:42:20 +0100 | [diff] [blame] | 43 | EXE_FILES => ['script/korapxml2krill', 'script/korapxml2krill_dir'] |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 44 | ); |