homebrew-core/Formula/s3fs.rb
Trevor Wennblom 67be26114b s3fs 1.70
Closes Homebrew/homebrew#20290.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-06-05 07:45:41 -07:00

29 lines
824 B
Ruby

require 'formula'
class S3fs < Formula
homepage 'http://code.google.com/p/s3fs/'
url 'http://s3fs.googlecode.com/files/s3fs-1.70.tar.gz'
sha1 '6e0c8d3ff67843c0baa7326128bc2be702e2f5a0'
depends_on 'pkg-config' => :build
depends_on 'fuse4x'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def caveats
<<-EOS.undent
Make sure to follow the directions given by `brew info fuse4x-kext`
before trying to use a FUSE-based filesystem.
Also, be aware that s3fs has some caveats concerning S3 "directories"
that have been created by other tools. See the following issue for
details:
http://code.google.com/p/s3fs/issues/detail?id=73
EOS
end
end