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 | ce41be8 | 2017-02-01 14:41:03 +0100 | [diff] [blame] | 14 | 'Mojolicious' => 7.23, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 15 | 'Packed::Array' => 0.01, |
Akron | 92ad95b | 2016-08-15 23:38:56 +0200 | [diff] [blame] | 16 | 'Test::Output' => 0, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 17 | 'Log::Log4perl' => 1.42, |
| 18 | 'JSON::XS' => 3.01, |
| 19 | 'Set::Scalar' => 1.26, |
| 20 | 'XML::Fast' => 0.11, |
| 21 | 'Try::Tiny' => 0.21, |
| 22 | 'Array::IntSpan' => 2.003, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 23 | 'List::MoreUtils' => 0.33, |
Akron | 96165ad | 2016-02-15 18:09:41 +0100 | [diff] [blame] | 24 | 'Parallel::ForkManager' => 1.17, |
Akron | 405f0c5 | 2016-07-07 17:56:16 +0200 | [diff] [blame] | 25 | 'IO::Compress::Gzip' => 2.069, |
Akron | cdf0e00 | 2016-07-08 16:42:04 +0200 | [diff] [blame] | 26 | 'IO::Uncompress::Gunzip' => 2.069, |
Nils Diewald | 8e323ee | 2014-04-23 17:28:14 +0000 | [diff] [blame] | 27 | 'IO::Dir::Recursive' => 0.03, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 28 | 'File::Temp' => 0, |
Nils Diewald | 207439c | 2014-11-01 00:16:38 +0000 | [diff] [blame] | 29 | 'Directory::Iterator' => 0, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 30 | 'Benchmark' => 0, |
Akron | 5809fea | 2017-03-14 20:02:26 +0100 | [diff] [blame] | 31 | 'Unicode::CaseFold' => 1.00, |
Akron | 55778f0 | 2017-03-14 20:47:26 +0100 | [diff] [blame] | 32 | 'Unicode::Normalize' => 0, |
Akron | 11c8030 | 2016-03-18 19:44:43 +0100 | [diff] [blame] | 33 | 'Carp' => 0, |
| 34 | 'strict' => 0, |
| 35 | 'warnings' => 0, |
| 36 | 'utf8' => 0, |
| 37 | 'bytes' => 0, |
| 38 | 'Pod::Usage' => 0, |
Akron | c11f798 | 2017-02-21 21:20:14 +0100 | [diff] [blame] | 39 | 'Cache::FastMmap' => 1.40, |
Akron | 636aa11 | 2017-04-07 18:48:56 +0200 | [diff] [blame] | 40 | 'Sys::Info' => 0.78, |
Akron | 63f20d4 | 2017-04-10 23:40:29 +0200 | [diff] [blame^] | 41 | 'Config::Simple' => 4.58, |
| 42 | 'String::Random' => 0.29, |
| 43 | 'File::Path' => 2.12 |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 44 | }, |
Nils Diewald | 840c924 | 2014-10-28 19:51:26 +0000 | [diff] [blame] | 45 | MIN_PERL_VERSION => '5.014', |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 46 | test => { |
Akron | 9c0488f | 2016-01-28 14:17:15 +0100 | [diff] [blame] | 47 | TESTS => |
| 48 | 't/*.t '. |
Akron | 5f51d42 | 2016-08-16 16:26:43 +0200 | [diff] [blame] | 49 | 't/annotation/*.t ' . |
| 50 | 't/sgbr/*.t ' . |
| 51 | 't/real/*.t ' . |
| 52 | 't/script/*.t ' |
Akron | fd0707e | 2016-02-11 22:13:36 +0100 | [diff] [blame] | 53 | }, |
Akron | 44feb4e | 2016-03-02 12:45:47 +0100 | [diff] [blame] | 54 | EXE_FILES => ['script/korapxml2krill'] |
Nils Diewald | 2db9ad0 | 2013-10-29 19:26:43 +0000 | [diff] [blame] | 55 | ); |