aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2011-03-06 21:29:23 -0800
committerAdam Vandenberg2011-03-06 21:29:23 -0800
commit98c44beeba1758b352e921b9747ecb04a9b5978c (patch)
treea7165f0599bc48f0eb9a514c6ceb13b135308b80
parentd876f8af88025b775ab3a484bff12b7d764823a2 (diff)
downloadhomebrew-98c44beeba1758b352e921b9747ecb04a9b5978c.tar.bz2
Remove sshfs-fuse
This formula is hard to get right across 10.5 and 10.6 and 32-vs64-bit systems. Removing from core.
-rw-r--r--Library/Formula/sshfs-fuse.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/Library/Formula/sshfs-fuse.rb b/Library/Formula/sshfs-fuse.rb
deleted file mode 100644
index f60797e3a..000000000
--- a/Library/Formula/sshfs-fuse.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'formula'
-
-class SshfsFuse <Formula
- url 'http://downloads.sourceforge.net/project/fuse/sshfs-fuse/2.2/sshfs-fuse-2.2.tar.gz'
- homepage 'http://fuse.sourceforge.net/sshfs.html'
- md5 '26e9206eb5169e87e6f95f54bc005a4f'
-
- depends_on 'pkg-config' => :build
- depends_on 'glib'
- depends_on 'gettext'
-
- def install
- ENV.append_to_cflags "-DDARWIN_SEMAPHORE_COMPAT"
- system "./configure", "--disable-debug", "--disable-dependency-tracking",
- "--prefix=#{prefix}"
- system "make install"
- end
-
- def patches
- "http://macfuse.googlecode.com/svn/trunk/filesystems/sshfs/sshfs-fuse-2.2-macosx.patch"
- 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