aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDeniss Afonin2011-09-19 09:32:53 +0300
committerCharlie Sharpsteen2011-09-20 14:34:11 -0700
commit75d2e52a2a01b584c44ab651dce3b455df1b1679 (patch)
tree1211ee605f1dfd894df672f3635a844da8707070 /Library
parent5c3e9153ee5d70c8de84492cdd980a3953fe238e (diff)
downloadhomebrew-75d2e52a2a01b584c44ab651dce3b455df1b1679.tar.bz2
encfs: Use fuse4x as a default FUSE provider
Fixes #6385. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/encfs.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/encfs.rb b/Library/Formula/encfs.rb
index f7a4ebafa..2228dcb00 100644
--- a/Library/Formula/encfs.rb
+++ b/Library/Formula/encfs.rb
@@ -9,16 +9,17 @@ class Encfs < Formula
depends_on 'gettext'
depends_on 'boost'
depends_on 'rlog'
+ depends_on 'fuse4x'
def caveats
<<-EOS.undent
- encfs requires MacFUSE 2.6 or later to be installed.
- You can find MacFUSE at:
- http://code.google.com/p/macfuse/
+ Make sure to follow the directions given by `brew info fuse4x-kext`
+ before trying to use a FUSE-based filesystem.
EOS
end
def install
+ inreplace "configure", "-lfuse", "-lfuse4x"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--with-boost=#{HOMEBREW_PREFIX}"