summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/xxdiff/package.py
blob: 5086355642dcce053fa6852f15cf452a139008dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# 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 Xxdiff(MakefilePackage):
    """Graphical File And Directories Comparator And Merge Tool."""

    homepage = "https://furius.ca/xxdiff/"
    git = "https://github.com/blais/xxdiff.git"

    maintainers("vanderwb")

    license("GPL-2.0-or-later")

    version("master", branch="master")
    version("2023-01-10", commit="604300ea9875611726ba885fb14f872b964df579")

    depends_on("flex@2.5.31:", type="build")
    depends_on("bison", type="build")
    depends_on("qt@5:", type=("build", "link", "run"))

    def edit(self, spec, prefix):
        env["QMAKE"] = "qmake"

    def build(self, spec, prefix):
        with working_dir("src"):
            # Create the makefile
            make("-f", "Makefile.bootstrap")
            make()

    def install(self, spec, prefix):
        mkdir(prefix.bin)
        install("bin/xxdiff", prefix.bin)