ctf-tools/sonic-visualizer/install

15 lines
313 B
Text
Raw Normal View History

2015-05-11 04:44:07 +00:00
#!/bin/bash -e
INST_DIR=$PWD
2015-10-28 13:30:14 +00:00
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
2015-05-11 04:44:07 +00:00
./configure --prefix=$INST_DIR
make -j
#make install
mkdir -p bin
cd bin
2015-10-28 13:30:14 +00:00
ln -s ../sonic-visualiser-2.5/sonic-visualiser .
2015-05-11 04:44:07 +00:00
cd ..