Define resources in Makefile

Due to the sunset of RT for CPAN it is beneficial to define
an issue tracker for libraries.

Change-Id: I58774069761d57f7ef8efd68a99e84185b92b7bd
diff --git a/Makefile.PL b/Makefile.PL
index 4fbf708..3e15add 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -32,7 +32,22 @@
     'Log::Any' => '1.708'
   },
   MIN_PERL_VERSION => '5.016',
-  EXE_FILES => ['script/tei2korapxml']
+  EXE_FILES => ['script/tei2korapxml'],
+  META_MERGE   => {
+    'meta-spec' => { version => 2 },
+    requires  => { perl => '5.010001' },
+    resources => {
+      license     => 'https://opensource.org/licenses/BSD-2-Clause',
+      repository  => {
+        type => 'git',
+        url => 'https://github.com/KorAP/KorAP-XML-TEI.git',
+        web => 'https://github.com/KorAP/KorAP-XML-TEI',
+      },
+      bugtracker => {
+        web => 'https://github.com/KorAP/KorAP-XML-TEI/issues'
+      }
+    }
+  }
 );
 
 package MY;