Add Makefile
Change-Id: Ic335e57fcab2232153e315683facabd77d00604f
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..e8f74a2
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,24 @@
+#!/usr/bin/env perl
+use v5.16;
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+ NAME => 'tei2korapxml',
+ AUTHOR => 'Peter Harders',
+ ABSTRACT => 'Conversion of TEI P5 based formats to KorAP-XML',
+ VERSION => '0.1',
+ LICENSE => 'freebsd',
+ BUILD_REQUIRES => {
+ 'Test::More' => 0,
+ 'Test::Output' => 0
+ },
+ PREREQ_PM => {
+ 'XML::CompactTree::XS' => '0.03',
+ 'XML::LibXML::Reader' => '2.0201',
+ 'IO::Compress::Zip' => '2.091',
+ },
+ MIN_PERL_VERSION => '5.016',
+ EXE_FILES => ['./script/tei2korapxml']
+);