aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-01-29 09:45:44 -0800
committerAdam Vandenberg2012-01-29 09:45:44 -0800
commitb99d68b0db3412a05b4f14c79bb5fdebb1ddf103 (patch)
treebce52abac93c0ead15304b2d0440bd81ac466973 /Library/Formula
parent4e9dccc01a01a223064e127273a403ecd573a2c2 (diff)
downloadhomebrew-b99d68b0db3412a05b4f14c79bb5fdebb1ddf103.tar.bz2
Move htop to Homebrew-alt
The OS X fork of htop is unofficial, and has not been updated to work consistently on Snow Leopard or Lion.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/htop.rb24
1 files changed, 0 insertions, 24 deletions
diff --git a/Library/Formula/htop.rb b/Library/Formula/htop.rb
deleted file mode 100644
index 85dd3c272..000000000
--- a/Library/Formula/htop.rb
+++ /dev/null
@@ -1,24 +0,0 @@
-require 'formula'
-
-class Htop < Formula
- head 'https://github.com/cynthia/htop-osx.git'
- homepage 'http://htop.sourceforge.net/'
-
- def install
- system "./autogen.sh"
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make", "install", "DEFAULT_INCLUDES='-iquote .'"
- rm_rf "#{share}/applications" # Don't need Gnome support on OS X
- rm_rf "#{share}/pixmaps"
- end
-
- def caveats; <<-EOS.undent
- For htop to display correctly all running processes, it needs to run as root.
- If you don't want to `sudo htop` every time, change the owner and permissions:
- cd #{bin}
- chmod 6555 htop
- sudo chown root htop
- EOS
- end
-end