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.
master
Jannis Leidel 2009-10-17 14:45:30 +02:00 committed by Max Howell
parent 8570152278
commit fc4fb52478
1 changed files with 15 additions and 0 deletions

15
Formula/htop.rb Normal file
View File

@ -0,0 +1,15 @@
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