mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-06 07:50:35 +00:00
afuse: add 0.4.1 bottle.
This commit is contained in:
parent
b8d2992721
commit
a7427e54f4
1 changed files with 27 additions and 0 deletions
27
Formula/afuse.rb
Normal file
27
Formula/afuse.rb
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
require_relative "../require/macfuse"
|
||||
|
||||
class Afuse < Formula
|
||||
desc "Automounting file system implemented in userspace with FUSE"
|
||||
homepage "https://github.com/pcarrier/afuse/"
|
||||
url "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/afuse/afuse-0.4.1.tar.gz"
|
||||
sha256 "c6e0555a65d42d3782e0734198bbebd22486386e29cb00047bc43c3eb726dca8"
|
||||
license "GPL-2.0-only"
|
||||
|
||||
bottle do
|
||||
root_url "https://github.com/gromgit/homebrew-fuse/releases/download/afuse-0.4.1"
|
||||
sha256 cellar: :any, big_sur: "5793a602add435689cfcd384bd1e7627568765c2417a30014525eb0e40e71ef5"
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on MacfuseRequirement
|
||||
depends_on :macos
|
||||
|
||||
def install
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
assert_match "FUSE library version", pipe_output("#{bin}/afuse --version 2>&1")
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue