aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ifuse.rb
diff options
context:
space:
mode:
authorEdward George2010-06-03 00:05:44 +0100
committerAdam Vandenberg2010-06-10 11:10:36 -0700
commit1cbe08fef80985639afa7356497792f2370650c8 (patch)
tree48a6b97379e892290d64743cac27ffdf89d8136f /Library/Formula/ifuse.rb
parent2f93ca1f9b4df6d6f42931c3bb2c2a18e6cf2039 (diff)
downloadhomebrew-1cbe08fef80985639afa7356497792f2370650c8.tar.bz2
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>
Diffstat (limited to 'Library/Formula/ifuse.rb')
-rw-r--r--Library/Formula/ifuse.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/Library/Formula/ifuse.rb b/Library/Formula/ifuse.rb
new file mode 100644
index 000000000..4a14c51ab
--- /dev/null
+++ b/Library/Formula/ifuse.rb
@@ -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