aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ncdu.rb
diff options
context:
space:
mode:
authorTim Carey-Smith2013-09-10 11:36:30 +1200
committerAdam Vandenberg2013-09-09 22:04:50 -0700
commitccf411184f858f8bced7454841feb14eac6fe4eb (patch)
treec961289cb7bef259a1b1ffaaa2e02aa3803cb632 /Library/Formula/ncdu.rb
parent6010f7de2dc2b9cf28f4e00e97533896ba597f0a (diff)
downloadhomebrew-ccf411184f858f8bced7454841feb14eac6fe4eb.tar.bz2
ncdu 1.10
Add HEAD version of ncdu Closes #22425. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/ncdu.rb')
-rw-r--r--Library/Formula/ncdu.rb9
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"