ctf-tools/sonic-visualizer/install

15 lines
319 B
Text
Raw Normal View History

2015-05-11 04:44:07 +00:00
#!/bin/bash -e
INST_DIR=$PWD
2015-09-24 20:31:21 +00:00
wget --no-check-certificate -O - https://code.soundsoftware.ac.uk/attachments/download/1185/sonic-visualiser-2.4.1.tar.gz | tar xz
2015-05-11 04:44:07 +00:00
cd sonic-visualiser-2.4.1
./configure --prefix=$INST_DIR
make -j
#make install
mkdir -p bin
cd bin
ln -s ../sonic-visualiser-2.4.1/sonic-visualiser .
cd ..