scripts/download-macos-libs.py: Skip libsndfile

This commit is contained in:
Matt Borgerson 2025-03-04 22:43:44 -07:00 committed by mborgerson
parent 4ca9cd9691
commit 41ad49c9e9
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class LibInstaller:
shell=True, check=True)
def is_pkg_skipped(self, pkg_name):
return any(pkg_name.startswith(n) for n in ('python', 'ncurses', 'mesa', 'llvm'))
return any(pkg_name.startswith(n) for n in ('python', 'ncurses', 'mesa', 'llvm', 'libsndfile'))
def install_pkg(self, pkg_name):
if self.is_pkg_installed(pkg_name):