diff options
| author | Deniss Afonin | 2011-09-19 09:59:13 +0300 |
|---|---|---|
| committer | Charlie Sharpsteen | 2011-09-20 14:35:12 -0700 |
| commit | 51f9941d175de0748ac3a730778d067bd0b0d04c (patch) | |
| tree | 79ba3c359eac2ab4c44a050ee5930a812aee24cd /Library | |
| parent | 75d2e52a2a01b584c44ab651dce3b455df1b1679 (diff) | |
| download | homebrew-51f9941d175de0748ac3a730778d067bd0b0d04c.tar.bz2 | |
s3backer: Use fuse4x as a default FUSE provider
Closes #6079.
Closes #7712.
Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/s3-backer.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/s3-backer.rb b/Library/Formula/s3-backer.rb index 0e8ddc5d8..771b3a133 100644 --- a/Library/Formula/s3-backer.rb +++ b/Library/Formula/s3-backer.rb @@ -6,16 +6,18 @@ class S3Backer < Formula sha1 'badc003ffb0830a3fa59c9f39f13ad94729cbcf1' depends_on 'pkg-config' => :build + depends_on 'fuse4x' def install + inreplace "configure", "-lfuse", "-lfuse4x" system "./configure", "--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. + Make sure to follow the directions given by `brew info fuse4x-kext` + before trying to use a FUSE-based filesystem. EOS end end |
