mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-06 16:15:54 +00:00
60 lines
2.4 KiB
Ruby
60 lines
2.4 KiB
Ruby
require_relative "../require/macfuse"
|
|
|
|
class RcloneMac < Formula
|
|
desc "Rsync for cloud storage (with macOS FUSE mount support)"
|
|
homepage "https://rclone.org/"
|
|
url "https://github.com/rclone/rclone/archive/refs/tags/v1.72.0.tar.gz"
|
|
sha256 "5a2eccbc3519224377c0fbbf4469c6e8125c37616ac28cf3c3ec091ccfbbe0c5"
|
|
license "MIT"
|
|
head "https://github.com/rclone/rclone.git", branch: "master"
|
|
|
|
bottle do
|
|
root_url "https://ghcr.io/v2/gromgit/fuse"
|
|
sha256 cellar: :any_skip_relocation, arm64_tahoe: "8dbdb39b713e0eae98e17382ea1f34c00d4e514626704c7a2083cb50aa00bf98"
|
|
sha256 cellar: :any_skip_relocation, arm64_sequoia: "78071ac73957eebe970c609b78ec0e8ef8a34fe09e1f824908cfe5f7da3f0ef3"
|
|
sha256 cellar: :any_skip_relocation, arm64_sonoma: "28dad62fdfe9a624e394fe2514b477f1411adf0fefad1c54e1f65afb2c57b849"
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
depends_on MacfuseRequirement
|
|
depends_on :macos
|
|
|
|
def install
|
|
setup_fuse
|
|
system "go", "build",
|
|
"-ldflags", "-s -X github.com/rclone/rclone/fs.Version=v#{version}",
|
|
"-tags", "cmount", *std_go_args
|
|
(libexec/"rclone").install_symlink bin/name.to_s => "rclone"
|
|
man1.install "rclone.1" => "#{name}.1"
|
|
system bin/name.to_s, "genautocomplete", "bash", "rclone.bash"
|
|
system bin/name.to_s, "genautocomplete", "bash", "#{name}.bash"
|
|
system bin/name.to_s, "genautocomplete", "zsh", "_rclone"
|
|
system bin/name.to_s, "genautocomplete", "zsh", "_#{name}"
|
|
bash_completion.install "rclone.bash" => "rclone"
|
|
bash_completion.install "#{name}.bash" => name.to_s
|
|
zsh_completion.install "_rclone"
|
|
zsh_completion.install "_#{name}"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
The rclone binary has been installed as `#{name}`,
|
|
to avoid conflict with the core `rclone` formula.
|
|
If you need to use it as `rclone`, add the "rclone" directory
|
|
to your PATH like:
|
|
PATH="#{opt_libexec}/rclone:$PATH"
|
|
|
|
`#{name}` supports the `mount` command on macOS, unlike the
|
|
Homebrew core `rclone`. If you don't need `mount`, please
|
|
`brew install rclone` instead.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
(testpath/"file1.txt").write "Test!"
|
|
system bin/name.to_s, "copy", testpath/"file1.txt", testpath/"dist"
|
|
assert_match File.read(testpath/"file1.txt"), File.read(testpath/"dist/file1.txt")
|
|
system opt_libexec/"rclone/rclone", "copy", testpath/"file1.txt", testpath/"dast"
|
|
assert_match File.read(testpath/"file1.txt"), File.read(testpath/"dast/file1.txt")
|
|
end
|
|
end
|