We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c2bc01 commit b2bb1f5Copy full SHA for b2bb1f5
.github/workflows/install-macos.sh
@@ -11,9 +11,17 @@ pip3 install .
11
python3 setup.py build_ext --inplace
12
13
# for Macos Big Sur, the stable portaudio (19.6.0) makes Friture freeze on startup
14
-# install from latest master instead
+# install from a newer master commit instead
15
# see: https://github.com/tlecomte/friture/issues/154
16
-brew install portaudio --HEAD
+PORTAUDIO_COMMIT=aa7a7902f1b79502633aeb88919657af46c84193
17
+rm -rf build/portaudio
18
+git clone https://github.com/PortAudio/portaudio.git build/portaudio
19
+cd build/portaudio
20
+git checkout $PORTAUDIO_COMMIT
21
+./configure --enable-mac-universal=no --enable-cxx
22
+make
23
+sudo make install
24
+cd -
25
26
pyinstaller friture.spec -y
27
0 commit comments