For the moment Kalamar does not support Windows

Change-Id: I5cfd33f7a675e96d3d1da0c8347333d47641d7fa
diff --git a/Makefile.PL b/Makefile.PL
index 1781435..5bbbf66 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -4,6 +4,10 @@
 
 use ExtUtils::MakeMaker;
 
+if ($^O =~ /^(MSWin32|cygwin)$/i) {
+  die "No support for Windows.\n";
+};
+
 WriteMakefile(
   VERSION_FROM => 'lib/Kalamar.pm',
   ABSTRACT     => 'Mojolicious-based Frontend for KorAP',
@@ -12,7 +16,7 @@
   BUILD_REQUIRES => {
     'Test::More' => 0
   },
-  LICENSE      => 'bsd_2',
+  LICENSE      => 'freebsd',
   PREREQ_PM => {
     'Mojolicious' => '7.66',
     'Mojolicious::Plugin::TagHelpers::Pagination' => 0.06,