mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 15:02:33 +00:00
7144e756e5
early on any error + anticipate that some tools can't be installed by now, but we still want the test to return success to satisfy travis-ci
11 lines
308 B
Bash
Executable file
11 lines
308 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
curl http://jaist.dl.sourceforge.net/project/reveng/1.4.4/reveng-1.4.4.tar.gz | tar xz
|
|
cd reveng-1.4.4
|
|
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.4.4/reveng bin
|