osx..install.sh 525 B

1234567891011121314151617181920212223
  1. #!/usr/bin/env bash
  2. set -e
  3. PACKAGES="cmake pkg-config libogg libvorbis lame libsndfile libsamplerate lilv lv2 jack sdl libgig libsoundio stk fluid-synth portaudio node fltk qt carla"
  4. if "${TRAVIS}"; then
  5. PACKAGES="$PACKAGES ccache"
  6. fi
  7. # removing already installed packages from the list
  8. for p in $(brew list); do
  9. PACKAGES=${PACKAGES//$p/}
  10. done;
  11. # shellcheck disable=SC2086
  12. brew install $PACKAGES
  13. # fftw tries to install gcc which conflicts with travis
  14. brew install fftw --ignore-dependencies
  15. npm install -g appdmg