require 'formula' class Ifuse :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