676693a93c
otool -L showed it linked to the system version, and it compiled without ncursesw installed.
12 lines
355 B
Ruby
12 lines
355 B
Ruby
require 'formula'
|
|
|
|
class Htop <Formula
|
|
head 'git://github.com/AndyA/htop-osx.git', :branch => 'osx'
|
|
homepage 'http://htop.sourceforge.net/'
|
|
|
|
def install
|
|
system "./autogen.sh"
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make", "install", "DEFAULT_INCLUDES='-iquote .'"
|
|
end
|
|
end
|