aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/htop.rb
blob: 5a5f515ee48c7a53fe765be3ca4eb6ed8781d1fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

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"
  end

end