summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/half/package.py
blob: 4a33bf6d6aaa3a1dd95637d6de5315ee82a74cf2 (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
# Copyright 2013-2024 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 Half(Package):
    """This is a C++ header-only library to provide an IEEE-754 conformant
    half-precision floating point type along with corresponding
    arithmetic operators, type conversions and common mathematical
    functions. It aims for both efficiency and ease of use, trying to
    accurately mimic the behaviour of the builtin floating point types
    at the best performance possible. It automatically uses and
    provides C++11 features when possible, but stays completely
    C++98-compatible when neccessary."""

    homepage = "https://sourceforge.net/projects/half/"
    url = "https://downloads.sourceforge.net/project/half/half/2.1.0/half-2.1.0.zip"

    maintainers("bvanessen")

    license("MIT")

    version("2.1.0", sha256="ad1788afe0300fa2b02b0d1df128d857f021f92ccf7c8bddd07812685fa07a25")
    version("1.12.0", sha256="cdd70d3bf3fe091b688e7ab3f48471c881a197d2c186c95cca8bf156961fb41c")
    patch("f16fix.patch", when="@2.1.0")

    def install(self, spec, prefix):
        mkdirp(prefix.include)
        install_tree("include", prefix.include)
        mkdirp(prefix.include.half)
        symlink("../half.hpp", join_path(self.prefix.include.half, "half.hpp"))