2022-01-13 03:21:41 +08:00
|
|
|
# Copyright 2013-2022 Lawrence Livermore National Security, LLC and other
|
2020-09-24 09:59:51 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2022-05-29 00:55:44 +08:00
|
|
|
from spack.package import *
|
2020-09-24 09:59:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
class Dmidecode(MakefilePackage):
|
|
|
|
"""Dmidecode reports information about your system's hardware
|
|
|
|
as described in your system BIOS according to the SMBIOS/DMI standard. ."""
|
|
|
|
|
|
|
|
homepage = "https://github.com/mirror/dmidecode"
|
|
|
|
url = "https://github.com/mirror/dmidecode/archive/dmidecode-3-2.tar.gz"
|
|
|
|
|
|
|
|
version('3-2', sha256='489d840d076785617a432649603aafa6358327f4376694c062b69dfa359bcc2d')
|
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install('dmidecode', prefix.bin)
|