ethtool: new package at version 4.8 (#13864)
This commit is contained in:
parent
da883f2270
commit
b95961d26b
1 changed files with 24 additions and 0 deletions
24
var/spack/repos/builtin/packages/ethtool/package.py
Normal file
24
var/spack/repos/builtin/packages/ethtool/package.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# Copyright 2013-2019 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 Ethtool(AutotoolsPackage):
|
||||
"""Ethtool is a small utility for examining and tuning your ethernet-based
|
||||
network interface."""
|
||||
|
||||
homepage = "https://github.com/Distrotech/ethtool"
|
||||
url = "https://github.com/Distrotech/ethtool/archive/v4.8.tar.gz"
|
||||
|
||||
version('4.8', sha256='e4443c612b01b6c4891e21f55a59aa2d6da1c9915edcf067bb66a0855590e143')
|
||||
|
||||
depends_on('autoconf', type='build')
|
||||
depends_on('automake', type='build')
|
||||
depends_on('libtool', type='build')
|
||||
depends_on('m4', type='build')
|
||||
|
||||
def autoreconf(self, spec, prefix):
|
||||
autoreconf('--install', '--verbose', '--force')
|
Loading…
Reference in a new issue