2018-10-08 04:52:23 +08:00
|
|
|
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2016-01-06 09:09:22 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2016-01-06 09:09:22 +08:00
|
|
|
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')
|
|
|
|
|
2017-04-29 03:57:55 +08:00
|
|
|
depends_on('zlib')
|
|
|
|
depends_on('ncurses')
|
|
|
|
|
2016-01-06 09:09:22 +08:00
|
|
|
def install(self, spec, prefix):
|
|
|
|
make()
|
|
|
|
mkdirp(prefix.bin)
|
|
|
|
install("atop", join_path(prefix.bin, "atop"))
|
|
|
|
mkdirp(join_path(prefix.man, "man1"))
|
2016-01-06 23:10:15 +08:00
|
|
|
install(join_path("man", "atop.1"),
|
2016-08-10 16:50:00 +08:00
|
|
|
join_path(prefix.man, "man1", "atop.1"))
|