aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncdu.rb
blob: b55bc54218e4bb53169dd288c1dbda7ff6dff834 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'formula'

class Ncdu < Formula
  homepage 'http://dev.yorhel.nl/ncdu'
  url 'http://dev.yorhel.nl/download/ncdu-1.10.tar.gz'
  sha1 'cf3b5fbb5b69cbae5425bfff2660ac3d8224a605'

  head do
    url 'git://g.blicky.net/ncdu.git'

    depends_on :automake
    depends_on :autoconf
  end

  def install
    system "autoreconf", "-i" if build.head?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end