diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ncdu.rb | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Library/Formula/ncdu.rb b/Library/Formula/ncdu.rb index 9c2ac1bee..dd51c7c30 100644 --- a/Library/Formula/ncdu.rb +++ b/Library/Formula/ncdu.rb @@ -2,10 +2,15 @@ require 'formula' class Ncdu < Formula homepage 'http://dev.yorhel.nl/ncdu' - url 'http://dev.yorhel.nl/download/ncdu-1.9.tar.gz' - sha1 '27cb5464b192db8ffdf0a894fe51d29985348eb0' + 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? system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" |
