aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorsanemat2014-10-30 23:38:33 +0900
committerMike McQuaid2014-11-23 11:15:46 +0000
commitddabdac89ab69f8c9d67b3abdac4490ea15db420 (patch)
treed1e26c2585cacc76f53110b9c52f593ff96a5c7e /Library
parentef257d620d024ef4ae8cc40656d69f0d714e562b (diff)
downloadhomebrew-ddabdac89ab69f8c9d67b3abdac4490ea15db420.tar.bz2
s3fs 1.78 (and add HEAD)
Closes #33740. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/s3fs.rb22
1 files changed, 16 insertions, 6 deletions
diff --git a/Library/Formula/s3fs.rb b/Library/Formula/s3fs.rb
index a5503b2a4..e2c913937 100644
--- a/Library/Formula/s3fs.rb
+++ b/Library/Formula/s3fs.rb
@@ -1,20 +1,30 @@
require "formula"
class S3fs < Formula
- homepage "http://code.google.com/p/s3fs/"
- url "https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.76.tar.gz"
- sha1 "478aa3230b5d85bfe95d9962ee2f1d8cd35fa070"
- revision 1
+ homepage "https://code.google.com/p/s3fs/"
+
+ stable do
+ url "https://github.com/s3fs-fuse/s3fs-fuse/archive/v1.78.tar.gz"
+ sha1 "613b448d84451400d3ee14aa9104ba6d9e90bd0b"
+ end
depends_on "pkg-config" => :build
depends_on "autoconf" => :build
depends_on "automake" => :build
- depends_on "openssl"
+ depends_on "gnutls"
+ depends_on "nettle"
+ depends_on "libgcrypt"
+
+ # S3fs currently relies on fuse4x which uses unsigned kexts, barred by Yosemite.
+ # Fuse4x and osxfuse are merging so monitor this over time and switch if/when possible.
depends_on "fuse4x"
+ depends_on MaximumMacOSRequirement => :mavericks
+
+ head "https://github.com/s3fs-fuse/s3fs-fuse.git"
def install
system "./autogen.sh"
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking", "--with-gnutls", "--prefix=#{prefix}"
system "make", "install"
end