-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fltk appears to have been fixed in Homebrew - removed "reinstall" to speed up builds
- Loading branch information
Showing
1 changed file
with
2 additions
and
9 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 |
---|---|---|
@@ -1,20 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk fluid-synth portaudio node" | ||
PACKAGES="cmake pkgconfig fftw libogg libvorbis libsndfile libsamplerate jack sdl stk fluid-synth portaudio node fltk" | ||
|
||
if [ $QT5 ]; then | ||
PACKAGES="$PACKAGES qt55" | ||
else | ||
PACKAGES="$PACKAGES qt" | ||
fi | ||
|
||
brew reinstall $PACKAGES | ||
brew install $PACKAGES | ||
|
||
sudo npm install -g appdmg | ||
|
||
# Workaround per Homebrew bug #44806 | ||
brew reinstall fltk | ||
if [ $? -ne 0 ]; then | ||
echo "Warning: fltk installation failed, trying workaround..." | ||
brew reinstall --devel https://raw.githubusercontent.com/dpo/homebrew/ec46018128dde5bf466b013a6c7086d0880930a3/Library/Formula/fltk.rb | ||
fi |