homebrew-core/Formula/ncdu.rb

19 lines
500 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ncdu < Formula
homepage 'http://dev.yorhel.nl/ncdu'
url 'http://dev.yorhel.nl/download/ncdu-1.10.tar.gz'
sha1 'cf3b5fbb5b69cbae5425bfff2660ac3d8224a605'
head 'git://g.blicky.net/ncdu.git'
depends_on :automake if build.head?
depends_on :autoconf if build.head?
def install
system "autoreconf", "-i" if build.head?
2013-01-29 04:58:43 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end