aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ifuse.rb
blob: 6b627c7295b96fcebf93daed7016f9744d0a06f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Ifuse < Formula
  url 'http://www.libimobiledevice.org/downloads/ifuse-1.0.0.tar.bz2'
  homepage 'http://www.libimobiledevice.org/'
  md5 '325d58abe182afa95187e6c55f2bba5f'

  depends_on 'pkg-config' => :build
  depends_on 'glib'
  depends_on 'libimobiledevice'

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make install"
  end

  def caveats
    <<-EOS.undent
    This depends on the MacFUSE installation from http://code.google.com/p/macfuse/
    MacFUSE must be installed prior to installing this formula.
    EOS
  end
end