homebrew-core/Formula/ncdu.rb
xiongchiamiov 42d995d695 ncdu: Update to 1.8
Closes Homebrew/homebrew#9235.

Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
2011-12-22 17:24:22 -08:00

12 lines
305 B
Ruby

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