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 | c13a170 | 2016-03-15 19:33:14 +0100 | [diff] [blame] | 10 | ABSTRACT => 'Preprocess KorAP XML Documents for Krill', |
Akron | e4c2e41 | 2016-01-28 15:10:50 +0100 | [diff] [blame] | 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 => { |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 14 | 'Mojolicious' => 6.11, |
| 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, |
| 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, |
Akron | 405f0c5 | 2016-07-07 17:56:16 +0200 | [diff] [blame] | 24 | 'IO::Compress::Gzip' => 2.069, |
Akron | cdf0e00 | 2016-07-08 16:42:04 +0200 | [diff] [blame^] | 25 | 'IO::Uncompress::Gunzip' => 2.069, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 26 | 'IO::Dir::Recursive' => 0.03, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 27 | 'File::Temp' => 0, |
Nils Diewald | 207439c | 2014-11-01 00:16:38 +0000 | [diff] [blame] | 28 | 'Directory::Iterator' => 0, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 29 | 'Benchmark' => 0, |
| 30 | 'Carp' => 0, |
| 31 | 'strict' => 0, |
| 32 | 'warnings' => 0, |
| 33 | 'utf8' => 0, |
| 34 | 'bytes' => 0, |
| 35 | 'Pod::Usage' => 0, |
| 36 | 'Cache::FastMmap' => 1.40 |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 37 | }, |
Nils Diewald | 840c924 | 2014-10-28 19:51:26 +0000 | [diff] [blame] | 38 | MIN_PERL_VERSION => '5.014', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 39 | test => { |
Akron | 9c0488f | 2016-01-28 14:17:15 +0100 | [diff] [blame] | 40 | TESTS => |
| 41 | 't/*.t '. |
Akron | 151676d | 2016-03-14 20:12:14 +0100 | [diff] [blame] | 42 | 't/annotation/*.t ' . |
Akron | 9c0488f | 2016-01-28 14:17:15 +0100 | [diff] [blame] | 43 | 't/sgbr/*.t ' . |
| 44 | 't/real/*.t' |
Akron | fd0707e | 2016-02-11 22:13:36 +0100 | [diff] [blame] | 45 | }, |
Akron | 44feb4e | 2016-03-02 12:45:47 +0100 | [diff] [blame] | 46 | EXE_FILES => ['script/korapxml2krill'] |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 47 | ); |