homebrew-core/Formula/ncdu.rb
Mike TUMS 4546e6fae4 ncdu 1.9
Closes Homebrew/homebrew#17656.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-07 07:01:19 -08:00

13 lines
340 B
Ruby

require 'formula'
class Ncdu < Formula
homepage 'http://dev.yorhel.nl/ncdu'
url 'http://dev.yorhel.nl/download/ncdu-1.9.tar.gz'
sha1 '27cb5464b192db8ffdf0a894fe51d29985348eb0'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end