homebrew-core/Formula/htop.rb
Jannis Leidel fc4fb52478 htop formula
Htop is an ncursed-based process viewer similar
to top, but it allows to scroll the list
vertically and horizontally to see all processes
and their full command lines.
2009-10-19 04:02:48 +01:00

15 lines
346 B
Ruby

require 'formula'
class Htop <Formula
head 'git://github.com/AndyA/htop-osx.git', :branch => 'osx'
homepage 'http://htop.sourceforge.net/'
depends_on 'ncursesw'
def install
system "./autogen.sh"
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end