aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncdu.rb
blob: a70dbc004ff0662ea664c0feeaee2510d7d380e6 (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'
  sha1 '3d98e78cf7035e32333d263d301d12e9b4352598'

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