aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ifuse.rb
blob: 4a14c51ab9f3c98835858a553250d9b7edb82a9f (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'
  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