From 08ebf204161d2bf596d9e99cf8075817a2b1b998 Mon Sep 17 00:00:00 2001 From: Pavel Borzenkov Date: Tue, 30 Apr 2013 12:52:22 +0400 Subject: ifuse: add --HEAD Closes #19533. Signed-off-by: Adam Vandenberg --- Library/Formula/ifuse.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Library') diff --git a/Library/Formula/ifuse.rb b/Library/Formula/ifuse.rb index 642ba7ae2..3304e4d83 100644 --- a/Library/Formula/ifuse.rb +++ b/Library/Formula/ifuse.rb @@ -5,12 +5,22 @@ class Ifuse < Formula url 'http://www.libimobiledevice.org/downloads/ifuse-1.1.2.tar.bz2' sha1 '885d88b45edb85c38b0ce9863f0d45fd378b5614' + head 'http://cgit.sukimashita.com/ifuse.git' + depends_on 'pkg-config' => :build depends_on 'glib' depends_on 'libimobiledevice' depends_on 'fuse4x' + if build.head? + depends_on 'autoconf' => :build + depends_on 'automake' => :build + depends_on 'libtool' => :build + end + def install + system "./autogen.sh" if build.head? + system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" -- cgit v1.2.3