homebrew-fuse/Formula/ifuse-mac.rb

43 lines
1.7 KiB
Ruby
Raw Normal View History

require_relative "../require/macfuse"
class IfuseMac < Formula
desc "FUSE module for iOS devices"
homepage "https://www.libimobiledevice.org/"
2025-02-10 20:21:16 +08:00
url "https://github.com/libimobiledevice/ifuse/archive/refs/tags/1.1.4.tar.gz"
sha256 "2a00769e8f1d8bad50898b9d00baf12c8ae1cda2d19ff49eaa9bf580e5dbe78c"
license "LGPL-2.1-or-later"
head "https://cgit.sukimashita.com/ifuse.git"
2021-05-02 16:46:08 +08:00
bottle do
root_url "https://github.com/gromgit/homebrew-fuse/releases/download/ifuse-mac-1.1.4"
2022-01-08 23:08:53 +08:00
sha256 cellar: :any, arm64_monterey: "da8f39c40ab72cf3a5ae28b7f8b118c0aae52f1ea6249c8fb71f131752a7e679"
sha256 cellar: :any, monterey: "b2b302e5373d5461fc0d41c680e500b5874c11a195a337e265ac6fad5cb9fba3"
sha256 cellar: :any, big_sur: "f6c2e432e98e35ea512c85e9eed06015e157477c58ccc3209fc915401a4a3bdc"
sha256 cellar: :any, catalina: "bafcd207118ffb63fcb67ce909f52bde7dc2fa138a592be30e6d7cdb96580377"
sha256 cellar: :any, mojave: "5c2d874a7377fa5c91bad47e7ee82adb4d965e3019fbf4b5128c318549f66180"
2021-05-02 16:46:08 +08:00
end
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
depends_on "pkg-config" => :build
depends_on "glib"
depends_on "libimobiledevice"
depends_on "libplist"
depends_on MacfuseRequirement
depends_on :macos
def install
setup_fuse
system "./autogen.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
test do
# Actual test of functionality requires osxfuse, so test for expected failure instead
assert_match "ERROR: No device found!", shell_output("#{bin}/ifuse --list-apps", 1)
end
end