##// END OF EJS Templates
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible...
Spectrogram segfault should be fixed now, added ability to provide Spectrogram min sampling time to avoid computation when possible Spectrogram visu is still broken... Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1454:99de6c65ff72 latest
r1467:da44adcd99e4
Show More
build.sh
15 lines | 666 B | application/x-sh | BashLexer
#!/bin/bash
# On OS X only 0.49.1 works :(
pip3 install --upgrade --user meson==0.49.1
HERE=$( cd "$(dirname "$0")" ; pwd -P )
mkdir build
~/Library/Python/3.7/bin/meson -Dcpp_args='-DQT_STATICPLUGIN' -Ddefault_library=static --prefix=/tmp/SciQLOP.app --bindir=Contents/MacOS build
cd build
ninja
ninja install
~/Library/Python/3.7/bin/virtualenv --always-copy /tmp/SciQLOP.app
~/Library/Python/3.7/bin/virtualenv --relocatable /tmp/SciQLOP.app
source /tmp/SciQLOP.app/bin/activate
/tmp/SciQLOP.app/bin/pip install git+https://github.com/jeandet/spwc
cp $HERE/SciQLOP_wrapper /tmp/SciQLOP.app/Contents/MacOS/
chmod +x /tmp/SciQLOP.app/Contents/MacOS/SciQLOP_wrapper