mirror of
https://github.com/zardus/ctf-tools
synced 2024-11-10 16:34:13 +00:00
Added veles tool
This commit is contained in:
parent
fac217933e
commit
0fcd37ab03
2 changed files with 12 additions and 0 deletions
9
veles/install
Executable file
9
veles/install
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
wget -O src.tar.gz https://codisec.com/wp-content/uploads/2016/12/Veles_2016.12_Source.tar.gz
|
||||
tar xf src.tar.gz
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_INSTALL_PREFIX:PATH=.. ../veles-2016.12
|
||||
make -j8
|
||||
make install
|
3
veles/install-root-debian
Executable file
3
veles/install-root-debian
Executable file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
apt-get install -y cmake zlib zlib-dev qtbase5 qtbase5-dev
|
Loading…
Reference in a new issue