From: Paul Brossier Date: Sat, 31 Jan 2015 13:30:32 +0000 (+0100) Subject: INSTALL.osx: add build instructions for osx X-Git-Tag: 0.5.0~10 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=c30d33922b1ae2a506408a0b82ae765ff79f5893;p=vamp-aubio-plugins.git INSTALL.osx: add build instructions for osx --- diff --git a/INSTALL.osx b/INSTALL.osx new file mode 100644 index 0000000..fb43844 --- /dev/null +++ b/INSTALL.osx @@ -0,0 +1,38 @@ +#! /bin/sh + +# instructions to build vamp-aubio-plugins for mac os x + +# move one directoy up +pushd .. + +# fetch Vamp SDK +curl -O https://code.soundsoftware.ac.uk/attachments/download/690/vamp-plugin-sdk-2.5.tar.gz +tar xf vamp-plugin-sdk-2.5.tar.gz + +# fetch Vamp osx binaries +curl -O https://code.soundsoftware.ac.uk/attachments/download/693/vamp-plugin-sdk-2.5-binaries-osx.tar.gz +tar xf vamp-plugin-sdk-2.5-binaries-osx.tar.gz + +# fetch and build aubio + +# from git develop branch +#git clone git://git.aubio.org/git/aubio/ aubio-osx +#pushd aubio-osx +##git co develop + +# from latest release +curl -O http://aubio.org/pub/aubio-0.4.1.tar.bz2 +tar xf aubio-0.4.1.tar.bz2 +pushd aubio-0.4.1 + +./waf distclean configure build install \ + --destdir=../aubio-dist-osx \ + --disable-avcodec --disable-samplerate --disable-jack --disable-sndfile +popd + +# back to current directory +popd +# now build vamp-aubio-plugins +CXXFLAGS="-I../aubio-dist-osx/usr/local/include" \ + LDFLAGS="-L../aubio-dist-osx/usr/local/lib" \ + make -f Makefile.osx clean all