
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
26 lines
817 B
Python
26 lines
817 B
Python
# Copyright 2013-2018 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 Atop(Package):
|
|
"""Atop is an ASCII full-screen performance monitor for Linux"""
|
|
homepage = "http://www.atoptool.nl/index.php"
|
|
url = "http://www.atoptool.nl/download/atop-2.2-3.tar.gz"
|
|
|
|
version('2.2-3', '034dc1544f2ec4e4d2c739d320dc326d')
|
|
|
|
depends_on('zlib')
|
|
depends_on('ncurses')
|
|
|
|
def install(self, spec, prefix):
|
|
make()
|
|
mkdirp(prefix.bin)
|
|
install("atop", join_path(prefix.bin, "atop"))
|
|
mkdirp(join_path(prefix.man, "man1"))
|
|
install(join_path("man", "atop.1"),
|
|
join_path(prefix.man, "man1", "atop.1"))
|