summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/efivar/package.py
blob: 4c9a9ee6dd10298927c596d4994947244103049c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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 Efivar(MakefilePackage):
    """Tools and libraries to work with EFI variables"""

    homepage = "https://github.com/rhboot/efivar"
    url = "https://github.com/rhboot/efivar/archive/37.tar.gz"

    license("LGPL-2.1-only")

    version("37", sha256="74c52b4f479120fb6639e753e71163ba3f557a7a67c0be225593f9f05b253f36")
    version("36", sha256="24ed0cafbaf6d913e8f60e5da3cbbac1a1578e16cf5c95b21f2eb6753c13173f")
    version("35", sha256="747bc4d97b4bd74979e5356c44a172534a8a07184f130349fd201742e683d292")

    def install(self, spec, prefix):
        make("PREFIX={0}".format(prefix), "install")