macbuild.sh 304 B

123456789101112131415161718
  1. #!/bin/bash
  2. set -Eeuo pipefail -x
  3. # install dependencies
  4. brew install autoconf-archive automake libsndfile fftw mpg123 libgcrypt
  5. # build zita-resampler
  6. git clone https://github.com/swesterfeld/zita-resampler
  7. cd zita-resampler
  8. cmake .
  9. make install
  10. cd ..
  11. # build audiowmark
  12. ./autogen.sh
  13. make
  14. make check