mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-08 17:13:58 +00:00
archivemount: add 0.9.1 bottle.
This commit is contained in:
parent
2a4b288086
commit
b3e7727ee8
1 changed files with 32 additions and 0 deletions
32
Formula/archivemount.rb
Normal file
32
Formula/archivemount.rb
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
require_relative "../require/macfuse"
|
||||
|
||||
class Archivemount < Formula
|
||||
desc "File system for accessing archives using libarchive"
|
||||
homepage "https://www.cybernoia.de/software/archivemount.html"
|
||||
url "https://www.cybernoia.de/software/archivemount/archivemount-0.9.1.tar.gz"
|
||||
sha256 "c529b981cacb19541b48ddafdafb2ede47a40fcaf16c677c1e2cd198b159c5b3"
|
||||
|
||||
bottle do
|
||||
root_url "https://github.com/gromgit/homebrew-fuse/releases/download/archivemount-0.9.1"
|
||||
sha256 cellar: :any, big_sur: "c6f48f507e80e6b0686bcf675e875046f66580b5d940171e4fa0a3eb9c9db563"
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "libarchive"
|
||||
depends_on MacfuseRequirement
|
||||
depends_on :macos
|
||||
|
||||
def install
|
||||
ENV.append_to_cflags "-I/usr/local/include/osxfuse"
|
||||
system "./configure", "--disable-debug",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-silent-rules",
|
||||
"--prefix=#{prefix}"
|
||||
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system bin/"archivemount", "--version"
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue