
- 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
24 lines
726 B
Python
24 lines
726 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 Htop(AutotoolsPackage):
|
|
"""htop is an interactive text-mode process viewer for Unix systems."""
|
|
|
|
homepage = "https://github.com/hishamhm/htop"
|
|
url = "https://hisham.hm/htop/releases/2.0.2/htop-2.0.2.tar.gz"
|
|
list_url = "https://hisham.hm/htop/releases"
|
|
list_depth = 1
|
|
|
|
version('2.2.0', '0d816b6beed31edc75babcfbf863ffa8')
|
|
version('2.0.2', '7d354d904bad591a931ad57e99fea84a')
|
|
|
|
depends_on('ncurses')
|
|
|
|
def configure_args(self):
|
|
return ['--enable-shared']
|