mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-06 07:50:35 +00:00
Compare commits
2 commits
c6b095a7b4
...
c0342389b6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c0342389b6 | ||
|
|
d06c9548d6 |
2 changed files with 4 additions and 11 deletions
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -10,7 +10,7 @@ jobs:
|
||||||
test-bot:
|
test-bot:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-13, macos-14, macos-15, macos-26]
|
os: [macos-14, macos-15, macos-26]
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- name: Set up Homebrew
|
- name: Set up Homebrew
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@ require_relative "../require/macfuse"
|
||||||
class S3fsMac < Formula
|
class S3fsMac < Formula
|
||||||
desc "FUSE-based file system backed by Amazon S3"
|
desc "FUSE-based file system backed by Amazon S3"
|
||||||
homepage "https://github.com/s3fs-fuse/s3fs-fuse/wiki"
|
homepage "https://github.com/s3fs-fuse/s3fs-fuse/wiki"
|
||||||
url "https://github.com/s3fs-fuse/s3fs-fuse/archive/refs/tags/v1.95.tar.gz"
|
url "https://github.com/s3fs-fuse/s3fs-fuse/archive/refs/tags/v1.96.tar.gz"
|
||||||
sha256 "0c97b8922f005500d36f72aee29a1345c94191f61d795e2a7b79fb7e3e6f5517"
|
sha256 "e11a051f23701445ca99ff0bfbc4e49d8b87c66cdd04a68a1802c2613ba9e3f1"
|
||||||
license "GPL-2.0-or-later"
|
license "GPL-2.0-or-later"
|
||||||
head "https://github.com/s3fs-fuse/s3fs-fuse.git", branch: "master"
|
head "https://github.com/s3fs-fuse/s3fs-fuse.git", branch: "master"
|
||||||
|
|
||||||
|
|
@ -34,19 +34,12 @@ class S3fsMac < Formula
|
||||||
end
|
end
|
||||||
|
|
||||||
def install
|
def install
|
||||||
setup_fuse
|
setup_fuse3
|
||||||
system "./autogen.sh"
|
system "./autogen.sh"
|
||||||
system "./configure", "--with-gnutls", *std_configure_args
|
system "./configure", "--with-gnutls", *std_configure_args
|
||||||
system "make", "install"
|
system "make", "install"
|
||||||
end
|
end
|
||||||
|
|
||||||
def caveats
|
|
||||||
<<~EOS
|
|
||||||
This is the final version that supports FUSE 2.
|
|
||||||
Further updates require a macOS FUSE 3 implementation.
|
|
||||||
EOS
|
|
||||||
end
|
|
||||||
|
|
||||||
test do
|
test do
|
||||||
system "#{bin}/s3fs", "--version"
|
system "#{bin}/s3fs", "--version"
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue