summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/dealii-parameter-gui/package.py
blob: 5583567cef1809e3b40cc53f8f4fea46eb378481 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 DealiiParameterGui(CMakePackage):
    """A qt based graphical user interface for editing deal.II .prm parameter
    files."""

    homepage = "https://github.com/dealii/parameter_gui"
    git      = "https://github.com/dealii/parameter_gui.git"

    version('develop', branch='master')

    depends_on('qt')

    def setup_run_environment(self, env):
        env.set('PARAMETER_GUI_DIR', self.prefix)