From d6fbc19c3acdf07f1adcec363682688c9c6cd9ac Mon Sep 17 00:00:00 2001 From: Adrian Ho Date: Wed, 12 Feb 2025 18:12:45 +0800 Subject: [PATCH] avfs: remove openssl Closes #86. Signed-off-by: Adrian Ho <215702+gromgit@users.noreply.github.com> --- Formula/avfs-mac.rb | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/Formula/avfs-mac.rb b/Formula/avfs-mac.rb index 6d58a05..e00bf93 100644 --- a/Formula/avfs-mac.rb +++ b/Formula/avfs-mac.rb @@ -24,22 +24,22 @@ class AvfsMac < Formula sha256 big_sur: "5500a012293e374d1ed9476fe45c740c3739c15b416d503cde99fad1f9b3079d" end - depends_on "pkg-config" => :build + depends_on "pkgconf" => :build + depends_on "bzip2" depends_on MacfuseRequirement depends_on :macos - depends_on "openssl@1.1" depends_on "xz" + depends_on "zlib" def install setup_fuse - args = %W[ - --disable-silent-rules - --enable-fuse - --enable-library - --with-ssl=#{Formula["openssl@1.1"].opt_prefix} - ] - - system "./configure", *std_configure_args, *args + system "./configure", "--disable-silent-rules", + "--enable-fuse", + "--enable-library", + "--with-system-zlib", + "--with-system-bzlib", + "--with-xz", + *std_configure_args system "make", "install" end