summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/mgardx/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/mgardx/package.py')
-rw-r--r--var/spack/repos/builtin/packages/mgardx/package.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/mgardx/package.py b/var/spack/repos/builtin/packages/mgardx/package.py
new file mode 100644
index 0000000000..8872e7cfe4
--- /dev/null
+++ b/var/spack/repos/builtin/packages/mgardx/package.py
@@ -0,0 +1,35 @@
+# Copyright 2013-2022 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 Mgardx(CMakePackage):
+ """MGARD implementation for research purposes
+ forked from: https://github.com/lxAltria/MGARDx"""
+
+ # Some of the functionality of this compressor were moved to `MGARD` proper
+ # effectively retiring this package. This package lives on to access some of
+ # this functionality. Includes minor patches to support spack.
+
+ homepage = "https://github.com/lxAltria/MGARDx"
+ git = "https://github.com/robertu94/MGARDx"
+
+ maintainers = ["robertu94"]
+
+ variant("shared", description="build shared libraries", default=True)
+
+ version("2022-01-27", commit="aabe9de1a331eaeb8eec41125dd45e30c1d03af4")
+
+ depends_on("sz-cpp")
+ depends_on("pkgconfig")
+ depends_on("zstd")
+
+ def cmake_args(self):
+ args = [
+ self.define("BUILD_TESTING", self.run_tests),
+ self.define_from_variant("BUILD_SHARED_LIBS", "shared"),
+ ]
+ return args