summaryrefslogtreecommitdiff
path: root/var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py')
-rw-r--r--var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py b/var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py
new file mode 100644
index 0000000000..61d40a2df6
--- /dev/null
+++ b/var/spack/repos/compiler_runtime.test/packages/gcc-runtime/package.py
@@ -0,0 +1,13 @@
+# Copyright 2013-2023 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class GccRuntime(Package):
+ homepage = "https://example.com"
+ has_code = False
+ tags = ["runtime"]
+ requires("%gcc")