mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
10 lines
197 B
Bash
Executable file
10 lines
197 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
INST_DIR=$PWD
|
|
|
|
curl ftp://sourceware.org/pub/valgrind/valgrind-3.13.0.tar.bz2 | tar xj
|
|
cd valgrind-3.13.0
|
|
./autogen.sh
|
|
./configure --prefix=$INST_DIR
|
|
make -j $(nproc)
|
|
make install
|