From 337a66703599a827b2f79e3d7491b0aa0d78588d Mon Sep 17 00:00:00 2001 From: Francois-Xavier Coudert Date: Fri, 18 Nov 2022 16:52:26 +0100 Subject: [PATCH] bindfs: depend on linux --- Formula/bindfs.rb | 22 ++-------------------- 1 file changed, 2 insertions(+), 20 deletions(-) diff --git a/Formula/bindfs.rb b/Formula/bindfs.rb index 170c7a28202..d050624d7d6 100644 --- a/Formula/bindfs.rb +++ b/Formula/bindfs.rb @@ -18,14 +18,8 @@ class Bindfs < Formula end depends_on "pkg-config" => :build - - on_macos do - disable! date: "2021-04-08", because: "requires closed-source macFUSE" - end - - on_linux do - depends_on "libfuse" - end + depends_on "libfuse" + depends_on :linux # on macOS, requires closed-source macFUSE def install args = %W[ @@ -43,18 +37,6 @@ class Bindfs < Formula system "make", "install" end - def caveats - on_macos do - <<~EOS - The reasons for disabling this formula can be found here: - https://github.com/Homebrew/homebrew-core/pull/64491 - - An external tap may provide a replacement formula. See: - https://docs.brew.sh/Interesting-Taps-and-Forks - EOS - end - end - test do system "#{bin}/bindfs", "-V" end