2021-04-27 13:42:59 +08:00
|
|
|
require_relative "../require/macfuse"
|
|
|
|
|
|
2021-04-27 14:05:24 +08:00
|
|
|
class GcsfuseMac < Formula
|
2021-04-27 13:42:59 +08:00
|
|
|
desc "User-space file system for interacting with Google Cloud"
|
|
|
|
|
homepage "https://github.com/googlecloudplatform/gcsfuse"
|
2023-01-11 18:04:36 +08:00
|
|
|
url "https://github.com/GoogleCloudPlatform/gcsfuse/archive/v0.41.11.tar.gz"
|
|
|
|
|
sha256 "58daf7ac3658bd0a6857bd0a8a2b73672b791662973e2a7bfbfcbc1b6f18102e"
|
2021-04-27 13:42:59 +08:00
|
|
|
license "Apache-2.0"
|
|
|
|
|
head "https://github.com/GoogleCloudPlatform/gcsfuse.git"
|
|
|
|
|
|
2022-11-25 17:44:29 +08:00
|
|
|
livecheck do
|
|
|
|
|
url :stable
|
|
|
|
|
regex(/^v?(\d+(?:\.\d+)+)$/i)
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-27 13:42:59 +08:00
|
|
|
bottle do
|
2023-01-11 18:04:36 +08:00
|
|
|
root_url "https://github.com/gromgit/homebrew-fuse/releases/download/gcsfuse-mac-0.41.11"
|
|
|
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "927150a05873cc6fbf15511020f793d93e801d91e3403ddb6a2bcf53d9a8d053"
|
2023-01-11 18:51:47 +08:00
|
|
|
sha256 cellar: :any_skip_relocation, monterey: "58634af2757fe864ab88434a14c65a6bc6553932ecae5df710c3b6b8b7633dfe"
|
2023-01-11 19:24:31 +08:00
|
|
|
sha256 cellar: :any_skip_relocation, big_sur: "2f3732befab0314648952cdf238a74e520de9cb345071cad6c037eb1f637a1be"
|
2023-01-11 19:46:47 +08:00
|
|
|
sha256 cellar: :any_skip_relocation, catalina: "3b0ab1e9f0b342642e2961e3bedb8f92da6c83aba48531e73e5f2fafdc6a80ae"
|
2023-01-11 20:04:20 +08:00
|
|
|
sha256 cellar: :any_skip_relocation, mojave: "4d494c68772bf647c3faec91b494e6cf4b2242f1268a6825fe76bd302a476dca"
|
2021-04-27 13:42:59 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
depends_on "go" => :build
|
|
|
|
|
depends_on MacfuseRequirement
|
|
|
|
|
depends_on :macos
|
|
|
|
|
|
2022-06-17 11:09:28 +08:00
|
|
|
# Review for removal on next release
|
|
|
|
|
patch do
|
|
|
|
|
url "https://github.com/GoogleCloudPlatform/gcsfuse/commit/c2abca911ff03b84ab64214b6717d8d7cc74c10f.patch?full_index=1"
|
|
|
|
|
sha256 "62930a0ae8322a071d489b1dd386206742b962123312b1368589c731867945b4"
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-27 13:42:59 +08:00
|
|
|
def install
|
2021-07-04 00:27:00 +08:00
|
|
|
setup_fuse
|
2021-04-27 13:42:59 +08:00
|
|
|
# Build the build_gcsfuse tool. Ensure that it doesn't pick up any
|
|
|
|
|
# libraries from the user's GOPATH; it should have no dependencies.
|
|
|
|
|
ENV.delete("GOPATH")
|
|
|
|
|
system "go", "build", "./tools/build_gcsfuse"
|
|
|
|
|
|
|
|
|
|
# Use that tool to build gcsfuse itself.
|
|
|
|
|
gcsfuse_version = build.head? ? Utils.git_short_head : version
|
2022-06-17 11:09:28 +08:00
|
|
|
system "./build_gcsfuse", buildpath, prefix, gcsfuse_version, "-buildvcs=false"
|
2021-04-27 13:42:59 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
test do
|
|
|
|
|
system "#{bin}/gcsfuse", "--help"
|
|
|
|
|
system "#{sbin}/mount_gcsfuse", "--help"
|
|
|
|
|
end
|
|
|
|
|
end
|