-
Notifications
You must be signed in to change notification settings - Fork 536
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install arm64 version of the missing libs
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,8 @@ test-command = "python -c 'import essentia; import essentia.standard; import ess | |
select = "*macosx_arm64*" | ||
|
||
before-build = [ | ||
"brew install pkg-config gcc readline sqlite gdbm freetype libpng", | ||
"brew install pkg-config gcc readline sqlite gdbm libpng", | ||
"PACKAGES=(freetype); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_ventura $PACKAGE; result=$(brew --cache --bottle-tag=arm64_ventura $PACKAGE); brew reinstall $result; done", | ||
"PACKAGES=(eigen libyaml fftw [email protected] libsamplerate libtag chromaprint); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_ventura $PACKAGE; result=$(brew --cache --bottle-tag=arm64_ventura $PACKAGE); brew reinstall $result; done", | ||
"brew link --force [email protected]", | ||
"python waf configure --pkg-config-path=\"${PKG_CONFIG_PATH}\" --arch arm64 --no-msse", | ||
|