ctf-tools/sonic-visualizer/install
Steven Van Acker 7144e756e5 fail hard on any error + verify that all scripts use bash -ex to fail
early on any error + anticipate that some tools can't be installed by
now, but we still want the test to return success to satisfy travis-ci
2017-02-16 22:40:17 +01:00

14 lines
323 B
Bash
Executable file

#!/bin/bash -ex
INST_DIR=$PWD
wget --no-check-certificate -O - https://code.soundsoftware.ac.uk/attachments/download/1675/sonic-visualiser-2.5.tar.gz | tar xz
cd sonic-visualiser-2.5
./configure --prefix=$INST_DIR
make -j $(nproc)
#make install
mkdir -p bin
cd bin
ln -s ../sonic-visualiser-2.5/sonic-visualiser .
cd ..