Lucene field indexer written in perl
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644
index 0000000..b076284
--- /dev/null
+++ b/Makefile.PL
@@ -0,0 +1,27 @@
+#!/usr/bin/env perl
+use v5.16;
+use strict;
+use warnings;
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  NAME         => 'KorAP::Bundle',
+  AUTHOR       => 'Nils Diewald',
+  ABSTRACT     => 'Perl Implementation for Generating Multifoundry Lucene Indices',
+  VERSION_FROM => 'lib/KorAP/Bundle.pm',
+  PREREQ_PM => {
+    'Mojolicious'   => 4.51,
+    'Packed::Array' => 0.01,
+    'Log::Log4perl' => 1.42,
+    'Carp'         => 0,
+    'strict'       => 0,
+    'warnings'     => 0,
+    'utf8'         => 0,
+    'bytes'        => 0
+  },
+#  LICENSE      => 'perl',
+  MIN_PERL_VERSION => '5.016',
+  test => {
+    TESTS => 't/*.t'
+  }
+);