diff options
| author | Jack Nagel | 2013-09-20 10:15:56 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2013-09-21 19:29:55 -0500 | 
| commit | cb4fc04d5f30c52509f8a001f3517e52692b028f (patch) | |
| tree | ccd8c23f7b6deae417fedcadebf950cb62a69367 | |
| parent | 30e309f870189549dd45aef2eb5b49f394a5d2fc (diff) | |
| download | homebrew-cb4fc04d5f30c52509f8a001f3517e52692b028f.tar.bz2 | |
ifuse: use spec deps
| -rw-r--r-- | Library/Formula/ifuse.rb | 14 | 
1 files changed, 7 insertions, 7 deletions
| diff --git a/Library/Formula/ifuse.rb b/Library/Formula/ifuse.rb index 3304e4d83..79914acd4 100644 --- a/Library/Formula/ifuse.rb +++ b/Library/Formula/ifuse.rb @@ -5,19 +5,19 @@ class Ifuse < Formula    url 'http://www.libimobiledevice.org/downloads/ifuse-1.1.2.tar.bz2'    sha1 '885d88b45edb85c38b0ce9863f0d45fd378b5614' -  head 'http://cgit.sukimashita.com/ifuse.git' +  head do +    url '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 +  depends_on 'pkg-config' => :build +  depends_on 'glib' +  depends_on 'libimobiledevice' +  depends_on 'fuse4x' +    def install      system "./autogen.sh" if build.head? | 
