mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 22:12:32 +00:00
11 lines
310 B
Bash
Executable file
11 lines
310 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curl http://hivelocity.dl.sourceforge.net/project/reveng/1.3.0/reveng-1.3.0.tar.gz | tar xvz
|
|
cd reveng-1.3.0
|
|
sed -i -e "s/^#define BMP_BIT.*/#define BMP_BIT 64/" config.h
|
|
sed -i -e "s/^#define BMP_SUB.*/#define BMP_SUB 32/" config.h
|
|
make -j $(nproc)
|
|
cd ..
|
|
|
|
mkdir -p bin
|
|
cp reveng-1.3.0/reveng bin
|