homebrew-core/Formula/ifuse.rb

24 lines
613 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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