homebrew-core/Formula/ncdu.rb

13 lines
305 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ncdu < Formula
url 'http://dev.yorhel.nl/download/ncdu-1.7.tar.gz'
homepage 'http://dev.yorhel.nl/ncdu'
md5 '172047c29d232724cc62e773e82e592a'
def install
2011-08-23 06:24:11 +00:00
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end