mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-06 07:50:35 +00:00
35 lines
1.1 KiB
Ruby
35 lines
1.1 KiB
Ruby
require_relative "../require/macfuse"
|
|
|
|
class ArchivemountMac < Formula
|
|
desc "File system for accessing archives using libarchive"
|
|
homepage "https://github.com/cybernoid/archivemount"
|
|
url "https://slackware.uk/~urchlay/src/archivemount-0.9.1.tar.gz"
|
|
sha256 "c529b981cacb19541b48ddafdafb2ede47a40fcaf16c677c1e2cd198b159c5b3"
|
|
|
|
livecheck do
|
|
url "https://raw.githubusercontent.com/cybernoid/archivemount/refs/heads/master/CHANGELOG"
|
|
regex(/\*\s+v?(\d+(?:\.\d+)+)\s+/i)
|
|
end
|
|
|
|
bottle do
|
|
root_url "https://ghcr.io/v2/gromgit/fuse"
|
|
rebuild 1
|
|
sha256 cellar: :any, arm64_sonoma: "abe39d7d99aae950033e62df6c1ac3c33b7b8a7863eeb92d2bb82c1b3b5662fc"
|
|
sha256 cellar: :any, ventura: "be2622a6cb26b8dc581c35b1cad1f07ddafbfea379e5f4db250258ab6583f615"
|
|
end
|
|
|
|
depends_on "pkgconf" => :build
|
|
depends_on "libarchive"
|
|
depends_on MacfuseRequirement
|
|
depends_on :macos
|
|
|
|
def install
|
|
setup_fuse
|
|
system "./configure", "--disable-silent-rules", *std_configure_args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system bin/"archivemount", "--version"
|
|
end
|
|
end
|