aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-10 20:34:57 -0800
committerAdam Vandenberg2011-03-10 20:34:57 -0800
commit4425823f01109f54ceedb23b9d364b005ae043d0 (patch)
tree416bf81b94b47a6d81c91363937de50a4cb61eda /Library
parent7b06f4a205121eb8592ac0861f33ef619d8ddef9 (diff)
downloadhomebrew-4425823f01109f54ceedb23b9d364b005ae043d0.tar.bz2
bmon - restore homepage and remove ncursesw dep
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/bmon.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/bmon.rb b/Library/Formula/bmon.rb
index 5eb404474..d76d66cd3 100644
--- a/Library/Formula/bmon.rb
+++ b/Library/Formula/bmon.rb
@@ -2,13 +2,13 @@ require 'formula'
class Bmon <Formula
url 'http://mirrors.kernel.org/debian/pool/main/b/bmon/bmon_2.0.1.orig.tar.gz'
- homepage 'http://freshmeat.net/projects/bmon/' # actually: http://people.suug.ch/~tgr/bmon
+ homepage 'http://people.suug.ch/~tgr/bmon'
md5 'd0da9d05f18c82a621171985d536dec7'
- depends_on 'ncursesw'
-
def install
- system "./configure", "--prefix=#{prefix}", "--mandir=#{man}", "--disable-debug", "--disable-dependency-tracking"
+ system "./configure", "--disable-debug",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}"
system "make" # two steps to prevent blowing up
system "make install"
end