Compare commits

...

3 commits

Author SHA1 Message Date
Adrian Ho
d06c9548d6 macos-13 runners deprecated
Some checks failed
brew test-bot / test-bot (macos-14) (push) Has been cancelled
brew test-bot / test-bot (macos-15) (push) Has been cancelled
brew test-bot / test-bot (macos-26) (push) Has been cancelled
2025-11-25 23:56:26 +08:00
Adrian Ho
698ed57a59 archivemount-mac: update 1b bottle.
Some checks failed
brew test-bot / test-bot (macos-13) (push) Has been cancelled
brew test-bot / test-bot (macos-14) (push) Has been cancelled
brew test-bot / test-bot (macos-15) (push) Has been cancelled
brew test-bot / test-bot (macos-26) (push) Has been cancelled
2025-11-23 04:12:52 +00:00
Adrian Ho
36701c7bf2 archivemount-mac 1b
Closes #179.

Signed-off-by: Adrian Ho <215702+gromgit@users.noreply.github.com>
2025-11-23 04:12:15 +00:00
2 changed files with 9 additions and 10 deletions

View file

@ -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

View file

@ -3,16 +3,16 @@ require_relative "../require/macfuse"
class ArchivemountMac < Formula class ArchivemountMac < Formula
desc "File system for accessing archives using libarchive" desc "File system for accessing archives using libarchive"
homepage "https://git.sr.ht/~nabijaczleweli/archivemount-ng" homepage "https://git.sr.ht/~nabijaczleweli/archivemount-ng"
url "https://git.sr.ht/~nabijaczleweli/archivemount-ng/archive/0.9.1.tar.gz" url "https://git.sr.ht/~nabijaczleweli/archivemount-ng/archive/1b.tar.gz"
sha256 "882faf07fe9241a5015eff9691c4702fdadb177265833b385135562a1c2c2059" version "1b"
sha256 "de10cfee3bff8c1dd2b92358531d3c0001db36a99e1098ed0c9d205d110e903d"
license "LGPL-2.0-or-later" license "LGPL-2.0-or-later"
bottle do bottle do
root_url "https://ghcr.io/v2/gromgit/fuse" root_url "https://ghcr.io/v2/gromgit/fuse"
rebuild 2 sha256 cellar: :any, arm64_tahoe: "e0aa81ce9ae8fb880b340b02077e03acaf1d4f489554a411bf4430ba3a558f31"
sha256 cellar: :any, arm64_tahoe: "50738aa449a8b214387c1cc148b30b760fb64ced8dd0c85f0d0c29db25986a73" sha256 cellar: :any, arm64_sequoia: "fa4e1c0bbd16a705f0746d9c1721e3a5ebf9fc664b49291dd0390129542595ae"
sha256 cellar: :any, arm64_sequoia: "02e40045fc073d935a4abf9b83e469b1c5f50b15fa84f53b95f1164e658279aa" sha256 cellar: :any, arm64_sonoma: "ab28653f06c95589c740800b90187182cf45abffa2dda25146881dceaa963152"
sha256 cellar: :any, arm64_sonoma: "482da34d8d8dbd9a2ce53f4ae40e1f84ca946e188d681ef9cc72d9535e98b3cd"
end end
depends_on "pkgconf" => :build depends_on "pkgconf" => :build
@ -21,9 +21,8 @@ class ArchivemountMac < Formula
depends_on :macos depends_on :macos
def install def install
setup_fuse setup_fuse3
system "./configure", "--disable-silent-rules", *std_configure_args system "make", "PREFIX=#{prefix}", "install"
system "make", "install"
end end
test do test do