Add new package: pciutils (#18795)

This commit is contained in:
darmac 2020-09-24 09:35:50 +08:00 committed by GitHub
parent 9577ed71fe
commit 83c1f035a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,23 @@
# Copyright 2013-2020 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 import *
class Pciutils(MakefilePackage):
"""This package contains the PCI Utilities."""
homepage = "https://mj.ucw.cz/sw/pciutils/"
url = "https://github.com/pciutils/pciutils/archive/v3.7.0.tar.gz"
version('3.7.0', sha256='ea768aa0187ba349391c6c157445ecc2b42e7d671fc1ce8c53ff5ef513f1e2ab')
version('3.6.4', sha256='551d0ac33f030868b7e95c29e58dc2b1882455dbc9c15c15adf7086e664131f1')
version('3.6.3', sha256='7ab0fbb35cffa326eb852539260562bac14f3d27cda8c70bc2cf3211ed97c014')
def install(self, spec, prefix):
make('install', 'PREFIX={0}'.format(prefix))
def setup_run_environment(self, env):
env.prepend_path('PATH', self.prefix.sbin)