20 lines
724 B
Python
20 lines
724 B
Python
# 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 Smartmontools(AutotoolsPackage):
|
|
"""S.M.A.R.T. utility toolset."""
|
|
|
|
homepage = "https://smartmontools.sourceforge.net"
|
|
url = "https://nchc.dl.sourceforge.net/project/smartmontools/smartmontools/6.6/smartmontools-6.6.tar.gz"
|
|
|
|
version("6.6", sha256="51f43d0fb064fccaf823bbe68cf0d317d0895ff895aa353b3339a3b316a53054")
|
|
|
|
def setup_run_environment(self, env):
|
|
env.prepend_path("PATH", self.prefix.sbin)
|
|
env.prepend_path("LD_LIBRARY_PATH", self.prefix.usr.lib)
|