blob: e8f74a26e5cfd9e464128cc9ba2caa6a2d706e39 [file] [log] [blame]
Akrondd3f47f2020-02-12 15:57:50 +01001#!/usr/bin/env perl
2use v5.16;
3use strict;
4use warnings;
5use ExtUtils::MakeMaker;
6
7WriteMakefile(
8 NAME => 'tei2korapxml',
9 AUTHOR => 'Peter Harders',
10 ABSTRACT => 'Conversion of TEI P5 based formats to KorAP-XML',
11 VERSION => '0.1',
12 LICENSE => 'freebsd',
13 BUILD_REQUIRES => {
14 'Test::More' => 0,
15 'Test::Output' => 0
16 },
17 PREREQ_PM => {
18 'XML::CompactTree::XS' => '0.03',
19 'XML::LibXML::Reader' => '2.0201',
20 'IO::Compress::Zip' => '2.091',
21 },
22 MIN_PERL_VERSION => '5.016',
23 EXE_FILES => ['./script/tei2korapxml']
24);