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

class Ncdu < Formula
  url 'http://dev.yorhel.nl/download/ncdu-1.8.tar.gz'
  homepage 'http://dev.yorhel.nl/ncdu'
  md5 '94d7a821f8a0d7ba8ef3dd926226f7d5'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
    system "make install"
  end
end