homebrew-core/Formula/htop-osx.rb

33 lines
973 B
Ruby
Raw Normal View History

require 'formula'
class HtopOsx < Formula
homepage 'https://github.com/max-horvath/htop-osx'
url 'https://github.com/max-horvath/htop-osx/archive/0.8.2.1-2013-03-31.tar.gz'
version '0.8.2.1'
2013-07-06 03:28:23 +00:00
sha1 '9c4bbe8517b59ca2ead8fedd4b8b24452f2ec55e'
depends_on :autoconf
2012-07-07 18:08:22 +00:00
depends_on :automake
depends_on :libtool
def install
# Otherwise htop will segfault when resizing the terminal
ENV.no_optimization if ENV.compiler == :clang
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make", "install", "DEFAULT_INCLUDES='-iquote .'"
end
def caveats; <<-EOS.undent
htop-osx requires root privileges to correctly display all running processes.
You can either run the program via `sudo` or set the setuid bit:
sudo chown root:wheel #{bin}/htop
sudo chmod u+s #{bin}/htop
2012-05-03 15:09:33 +00:00
You should be certain that you trust any software you grant root privileges.
EOS
end
end