-
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.
Use big_sur version instead of monterey
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
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 |
---|---|---|
|
@@ -43,9 +43,9 @@ test-command = "python -c 'import essentia; import essentia.standard; import ess | |
select = "*macosx_arm64*" | ||
|
||
before-build = [ | ||
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $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_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done", | ||
"PACKAGES=(tensorflow); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done", | ||
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $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_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done", | ||
"PACKAGES=(tensorflow); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done", | ||
"brew link --force [email protected]", | ||
"python waf configure --with-tensorflow --pkg-config-path=\"${PKG_CONFIG_PATH}\" --arch arm64 --no-msse", | ||
"python waf", | ||
|
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,8 +41,8 @@ test-command = "python -c 'import essentia; import essentia.standard; import ess | |
select = "*macosx_arm64*" | ||
|
||
before-build = [ | ||
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $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_monterey $PACKAGE; result=$(brew --cache --bottle-tag=arm64_monterey $PACKAGE); brew reinstall $result; done", | ||
"PACKAGES=(pkg-config gcc readline sqlite gdbm freetype libpng); for PACKAGE in ${PACKAGES[@]}; do brew fetch --force --bottle-tag=arm64_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $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_big_sur $PACKAGE; result=$(brew --cache --bottle-tag=arm64_big_sur $PACKAGE); brew reinstall $result; done", | ||
"brew link --force [email protected]", | ||
"python waf configure --pkg-config-path=\"${PKG_CONFIG_PATH}\" --arch arm64 --no-msse", | ||
"python waf", | ||
|