homebrew-core/Formula/ncdu.rb
Jonathan Wright 773866e1d2 ncdu 1.6
ncdu (NCurses Disk Usage) is a curses-based version of the well-known
'du', and provides a fast way to see what directories are using your
disk space.

Signed-off-by: David Höppner <0xffea@gmail.com>
2010-02-08 15:50:29 +01:00

15 lines
379 B
Ruby

require 'formula'
class Ncdu <Formula
url 'http://dev.yorhel.nl/download/ncdu-1.6.tar.gz'
homepage 'http://dev.yorhel.nl/ncdu'
md5 '95d29cf64af2d8cf4b5005e6e3d60384'
def install
# ncdu segfaults when built for 64-bit
ENV.m32
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end