aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2009-12-17 14:58:10 +0000
committerMax Howell2009-12-17 14:58:10 +0000
commit509da99d600e48ccf6df1ea8aa3e1136509efcf0 (patch)
tree1b6bc8350b44b1fbe426edfb7ae09c9ce913c06e /Library/Formula
parent95daa7a40034317fb42c60010bccac0ce3d83131 (diff)
downloadhomebrew-509da99d600e48ccf6df1ea8aa3e1136509efcf0.tar.bz2
htop doesn't seem to require ncursesw
otool -L showed it linked to the system version, and it compiled without ncursesw installed.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/htop.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/Library/Formula/htop.rb b/Library/Formula/htop.rb
index f578207f2..54e8fcd74 100644
--- a/Library/Formula/htop.rb
+++ b/Library/Formula/htop.rb
@@ -4,12 +4,9 @@ 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", "DEFAULT_INCLUDES='-iquote .'"
end
-
end