summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/uncrustify/package.py
blob: a9148c01e5aa29ca9e8f5c105857a2182264b451 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# 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 Uncrustify(Package):
    """Source Code Beautifier for C, C++, C#, ObjectiveC, Java, and others."""

    homepage = "http://uncrustify.sourceforge.net/"
    git = "https://github.com/uncrustify/uncrustify"
    url = "https://sourceforge.net/projects/uncrustify/files/uncrustify/uncrustify-0.69/uncrustify-0.69.tar.gz"

    maintainers = ["gmaurel"]

    version("master", branch="master")
    version("0.74", commit="62048b")
    version("0.73", commit="25b765")
    version("0.72", commit="1d3d8f")
    version("0.71", commit="64d82f")
    version("0.70", commit="51f64d")
    version("0.69", commit="a7a8fb")
    version("0.68", commit="86bc34")
    version("0.67", commit="00321a")
    version("0.66", commit="80f549")
    version("0.65", commit="905676")
    version("0.64", commit="1d7d97")
    version("0.63", commit="44ce0f")
    version("0.62", commit="5987f2")
    version("0.61", sha256="1df0e5a2716e256f0a4993db12f23d10195b3030326fdf2e07f8e6421e172df9")

    depends_on("cmake", type="build", when="@0.64:")
    depends_on("automake", type="build", when="@0.63")
    depends_on("autoconf", type="build", when="@0.63")

    @when("@0.64:")
    def install(self, spec, prefix):
        with working_dir("spack-build", create=True):
            cmake("..", *std_cmake_args)
            make()
            make("install")

    @when("@0.63")
    def install(self, spec, prefix):
        which("bash")("autogen.sh")
        configure("--prefix={0}".format(self.prefix))
        make()
        make("install")

    @when("@:0.62")
    def install(self, spec, prefix):
        configure("--prefix={0}".format(self.prefix))
        make()
        make("install")

    patch("uncrustify-includes.patch", when="@0.73")