build/analysis: rename checkcompilerdirectives to gocheckcompilerdirectives

We want to keep the package names identical to the run they contain.

Change-Id: I1d9dddec2cc47f6986597cf80b2a6e0367d0797c
Reviewed-on: https://review.monogon.dev/c/monogon/+/4483
Reviewed-by: Leopold Schabel <leo@monogon.tech>
Tested-by: Jenkins CI
diff --git a/build/analysis/gocheckcompilerdirectives/BUILD.bazel b/build/analysis/gocheckcompilerdirectives/BUILD.bazel
new file mode 100644
index 0000000..db862e5
--- /dev/null
+++ b/build/analysis/gocheckcompilerdirectives/BUILD.bazel
@@ -0,0 +1,9 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library")
+
+go_library(
+    name = "gocheckcompilerdirectives",
+    srcs = ["gocheckcompilerdirectives.go"],
+    importpath = "source.monogon.dev/build/analysis/gocheckcompilerdirectives",
+    visibility = ["//visibility:public"],
+    deps = ["@com_4d63_gocheckcompilerdirectives//checkcompilerdirectives"],
+)
diff --git a/build/analysis/gocheckcompilerdirectives/gocheckcompilerdirectives.go b/build/analysis/gocheckcompilerdirectives/gocheckcompilerdirectives.go
new file mode 100644
index 0000000..254573b
--- /dev/null
+++ b/build/analysis/gocheckcompilerdirectives/gocheckcompilerdirectives.go
@@ -0,0 +1,8 @@
+// Copyright The Monogon Project Authors.
+// SPDX-License-Identifier: Apache-2.0
+
+package gocheckcompilerdirectives
+
+import "4d63.com/gocheckcompilerdirectives/checkcompilerdirectives"
+
+var Analyzer = checkcompilerdirectives.Analyzer()