Added formula: ifuse 1.0.0

ifuse is a fuse filesystem that allows you to mount the filesystem of an
iPhone/iPod Touch.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Edward George 2010-06-03 00:05:44 +01:00 committed by Adam Vandenberg
parent 8b4800f301
commit 8e92e7ed6d
1 changed files with 23 additions and 0 deletions

23
Formula/ifuse.rb Normal file
View File

@ -0,0 +1,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