Marc Kupietz | 5e7f20a | 2020-02-17 18:17:11 +0100 | [diff] [blame] | 1 | #!/usr/bin/env perl |
| 2 | use v5.16; |
| 3 | use strict; |
| 4 | use warnings; |
| 5 | use ExtUtils::MakeMaker; |
| 6 | |
| 7 | WriteMakefile( |
Marc Kupietz | bb739b0 | 2020-09-22 16:49:34 +0200 | [diff] [blame] | 8 | NAME => 'korapxml2conllu', |
| 9 | AUTHOR => 'Marc Kupietz', |
Marc Kupietz | 79ba1e5 | 2021-02-12 17:26:54 +0100 | [diff] [blame] | 10 | ABSTRACT => 'Conversion between KorAP-XML zip and CoNLL-U', |
Marc Kupietz | 22858f8 | 2021-02-15 14:22:05 +0100 | [diff] [blame^] | 11 | VERSION => '0.3', |
Marc Kupietz | bb739b0 | 2020-09-22 16:49:34 +0200 | [diff] [blame] | 12 | LICENSE => 'freebsd', |
| 13 | BUILD_REQUIRES => { |
Marc Kupietz | 79ba1e5 | 2021-02-12 17:26:54 +0100 | [diff] [blame] | 14 | 'Test::More' => "1.302177", |
| 15 | 'Test::Script' => "1.12", |
| 16 | 'Test::TempDir::Tiny' => 0, |
| 17 | 'File::Temp' => 0.2308, |
| 18 | 'IO::Compress::Zip' => '2.091', |
Marc Kupietz | bb739b0 | 2020-09-22 16:49:34 +0200 | [diff] [blame] | 19 | }, |
| 20 | PREREQ_PM => { |
Marc Kupietz | 79ba1e5 | 2021-02-12 17:26:54 +0100 | [diff] [blame] | 21 | 'POSIX' => 0, |
| 22 | 'Getopt::Std' => 0, |
| 23 | 'Encode' => "3.07", |
| 24 | 'IO::Compress::Zip' => '2.091' |
Marc Kupietz | bb739b0 | 2020-09-22 16:49:34 +0200 | [diff] [blame] | 25 | }, |
| 26 | MIN_PERL_VERSION => '5.016', |
Marc Kupietz | 79ba1e5 | 2021-02-12 17:26:54 +0100 | [diff] [blame] | 27 | EXE_FILES => [ './script/korapxml2conllu', './script/conllu2korapxml' ] |
Marc Kupietz | 5e7f20a | 2020-02-17 18:17:11 +0100 | [diff] [blame] | 28 | ); |