mirror of
https://github.com/gromgit/homebrew-fuse.git
synced 2025-12-31 15:02:17 +00:00
mass rename to avoid clashes with core tap
Forgot that base formula names need to be unique, otherwise `brew upgrade` picks up the core tap formula over this replacement, leading to: ``` $ brew upgrade [...] ==> Upgrading sshfs 2.10_2 -> 3.7.1 Error: sshfs has been disabled because it requires FUSE! ```
This commit is contained in:
parent
ee76a3651b
commit
d22b36dc85
11 changed files with 30 additions and 19 deletions
30
Formula/fuse-zip-mac.rb
Normal file
30
Formula/fuse-zip-mac.rb
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
require_relative "../require/macfuse"
|
||||
|
||||
class FuseZipMac < Formula
|
||||
desc "FUSE file system to create & manipulate ZIP archives"
|
||||
homepage "https://bitbucket.org/agalanin/fuse-zip"
|
||||
url "https://bitbucket.org/agalanin/fuse-zip/get/0.7.2.tar.gz"
|
||||
sha256 "bba004193db9841a8d9a59e927fffe24f1b92f7ad15a5694c687456617b638a2"
|
||||
license "GPL-3.0-or-later"
|
||||
head "https://bitbucket.org/agalanin/fuse-zip", using: :hg
|
||||
|
||||
bottle do
|
||||
root_url "https://github.com/gromgit/homebrew-fuse/releases/download/fuse-zip-mac-0.7.2"
|
||||
sha256 cellar: :any, big_sur: "4e7bbaf05a17ccf3282e6a15cdbe7e46b66e3f6ebe269b3600a05a8c3cf9571a"
|
||||
sha256 cellar: :any, catalina: "bed4d00e3b56d18a4ebb7a76bcc9e1f6b4f7e0492b6956275285f8a0d5a3391c"
|
||||
sha256 cellar: :any, mojave: "1641e4fed95580af8f2146bf3b9e03b8197b016793d8ecaa9defbb6f00c66e62"
|
||||
end
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
depends_on "libzip"
|
||||
depends_on MacfuseRequirement
|
||||
depends_on :macos
|
||||
|
||||
def install
|
||||
system "make", "prefix=#{prefix}", "install"
|
||||
end
|
||||
|
||||
test do
|
||||
system bin/"fuse-zip", "--help"
|
||||
end
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue