diff options
| -rw-r--r-- | Library/Formula/encfs.rb | 7 |
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}" |
