spack/var/spack/repos/builtin/packages/iptraf-ng/package.py
Harmen Stoppels fce95e2efb
license year bump (#34921)
* license bump year
* fix black issues of modified files
* mypy
* fix 2021 -> 2023
2023-01-18 14:30:17 -08:00

23 lines
852 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 IptrafNg(MakefilePackage):
"""A console-based network monitoring utility."""
homepage = "https://github.com/iptraf-ng/iptraf-ng"
url = "https://github.com/iptraf-ng/iptraf-ng/archive/v1.2.0.tar.gz"
version("1.2.1", sha256="9f5cef584065420dea1ba32c86126aede1fa9bd25b0f8362b0f9fd9754f00870")
version("1.2.0", sha256="9725115e501d083674d50a7686029d3a08f920abd35c9a2d4a28b5ddb782417f")
version("1.1.4", sha256="16b9b05bf5d3725d86409b901696639ad46944d02de6def87b1ceae5310dd35c")
depends_on("ncurses")
def install(self, spec, prefix):
make("install", "prefix={0}".format(prefix))