mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
14 lines
313 B
Bash
Executable file
14 lines
313 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
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
|
|
#make install
|
|
|
|
mkdir -p bin
|
|
cd bin
|
|
ln -s ../sonic-visualiser-2.5/sonic-visualiser .
|
|
cd ..
|