diff options
| author | Pavel Borzenkov | 2013-04-30 12:52:22 +0400 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-04-30 06:20:45 -0700 | 
| commit | 08ebf204161d2bf596d9e99cf8075817a2b1b998 (patch) | |
| tree | d760f0048b2523a6e2acbec26fdad9711a9ed8fc | |
| parent | 819fb643bd5ca3f0103d43fa3303692f675b63c9 (diff) | |
| download | homebrew-08ebf204161d2bf596d9e99cf8075817a2b1b998.tar.bz2 | |
ifuse: add --HEAD
Closes #19533.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/ifuse.rb | 10 | 
1 files changed, 10 insertions, 0 deletions
| 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" | 
